目前全部項目都經過npm包的形式引入vue、vue-router、axios、vuex、element-ui、ucar-view這些第三方包,webpack打包的時候會將這些資源打包到vendor.js中,咱們能夠將這些公用資源經過cdn引入到index.html中,可大大減少vendor.js的大小。css
第一步:index.html中cdn引入靜態資源html
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width,initial-scale=1.0" /> <meta name="renderer" content="webkit" /> <link rel="shortcut icon" href="static/logo.ico" /> <title>統一管理系統-神州優車集團協同辦公門戶</title> <!-- heade中引入公用css資源 --> <link rel="stylesheet" href="http://w3static.zuchecdn.com/upload/201901/1547542189993_element-ui.css" /> <link rel="stylesheet" href="http://w3static.zuchecdn.com/upload/201901/1547548288099_ucar-view.css" /> </head> <body> <div id="app"></div> <!-- body中引入公用js資源 --> <script src="http://w3static.zuchecdn.com/upload/201901/1547542004668_vue.min.js"></script> <script src="http://w3static.zuchecdn.com/upload/201901/1547542053516_axios.min.js"></script> <script src="http://w3static.zuchecdn.com/upload/201901/1547542073388_vue-router.min.js"></script> <script src="http://w3static.zuchecdn.com/upload/201901/1547542116839_element-ui.js"></script> <script src="http://w3static.zuchecdn.com/upload/201901/1547695026296_ucar-view.umd.min.js"></script> <script src="http://w3static.zuchecdn.com/upload/201901/1547542098031_vuex.min.js"></script> <script src="http://w3static.zuchecdn.com/upload/201901/1547542135730_es6-promise.auto.min.js"></script> </body> </html>
第二步:webpack.base.conf.js中引入靜態資源前端
//放入module.exports中 externals: { vue: 'Vue', 'vue-router': 'VueRouter', axios: 'axios', vuex: 'Vuex', 'element-ui': 'ELEMENT', '@ucar/ucar-view': 'ucar-view' },
第三步:main.js中刪除element-ui、ucar-view的引用vue
刪除import elementui from 'element-ui'webpack
刪除import ucarView from '@ucar/ucar-view'ios
刪除Vue.use(elementui)nginx
刪除Vue.use(ucarView) 或者 Vue.use(Element, { size: 'small'})es6
刪除import 'element-ui/lib/theme-chalk/index.css'web
增長Vue.prototype.$ELEMENT = { size: 'small'}vue-router
第四步:刪除項目依賴包
在項目package.json中刪除已經用cdn引入的包
刪除前:
刪除後:
這四步完成後,需重新啓動項目才能正常運行,npm run build打包後能明顯發現vendoe.js縮小不少
將config/index.j
s文件的productionGzip
設置爲true
而後安裝compression-webpack-plugin依賴
npm install --save-dev compression-webpack-plugin@1.1.11
注意:不能安裝最新的2.0版本,需webpack4.x版本支持,安裝時固定版本號便可
npm run build 打包後,app.js和vendor.js會生成gzip壓縮文件,app.js也從237k壓縮到42k
想讓瀏覽器加載頁面時加載gzip格式的壓縮文件,還須要在nginx服務器配置開啓gzip