cdn(内容分发网络)是一种通过互联网相互连接的电脑网络系统,当用户向cdn链接请求资源时,cdn会利用最靠近用户的服务器来给用户返回资源。
使用cdn能实现用户不需要在项目中通过npm下载其他资源(如第三方库),直接通过请求cdn服务器,服务器返回后即可使用,这样就减小了打包时包的大小,项目的首屏加载也能过更快。
引用资源及配置
话不多说,下面对vue项目中常用的资源进行cdn引用及配置(vue、vuex、vue-router、axios、elementUI)
1、引入
可在项目中的index.html文件 <head/>标签的<title/>标签的下方添加以下代码(需要最新版本的话可以上各个官网上复制)
<head> ... <title></title> <script src="https://cdn.bootcss.com/vue/2.5.2/vue.min.js" rel="stylesheet" type="text/javascript"></script> <link rel="stylesheet" href="https://cdn.bootcss.com/element-ui/2.4.0/theme-chalk/index.css"> <script src="https://cdn.bootcss.com/element-ui/2.12.0/index.js" rel="stylesheet" type="text/javascript"></script> <script src="https://cdn.bootcss.com/vuex/3.0.1/vuex.min.js" rel="stylesheet" type="text/javascript"></script> <script src="https://cdn.bootcss.com/axios/0.17.1/axios.min.js" rel="stylesheet" type="text/javascript"></script> <script src="https://cdn.bootcss.com/vue-router/3.0.1/vue-router.min.js" rel="stylesheet" type="text/javascript"></script> <head>
2、配置
在webpack.base.conf.js文件中添加以下配置
externals: { 'vue': 'Vue', 'vue-router': 'VueRouter', 'element-ui': 'ELEMENT', 'vuex': 'Vuex', 'axios': 'axios', },
如果是vue-cli3以上版本的话没有webpack.base.conf.js文件的话就在vue.config.js文件中配置:
module.exports ={ ... configureWebpack: { externals: { 'vue': 'Vue', 'element-ui': 'ELEMENT', 'axios': 'axios', 'vuex': 'Vuex', 'vue-router': 'VueRouter', } }, }
3、在main.js文件中去除原来的引用
main.js:
这样就实现了在vue项目中通过cdn来引入常见的一些资源了。
原文链接:https://blog.csdn.net/jiangjunyuan168/article/details/124282120?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522165918321816782184659334%2522%252C%2522scm%2522%253A%252220140713.130102334.pc%255Fblog.%2522%257D&request_id=165918321816782184659334&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2~blog~first_rank_ecpm_v1~times_rank-23-124282120-null-null.nonecase&utm_term=cdn
原创文章,作者:优速盾-小U,如若转载,请注明出处:https://www.cdnb.net/bbs/archives/345