vue-cli3.0 資源加載的優化方案

20180829 更新

今天反覆試了,不用區分 測試環境仍是 生產環境,統一都用 cdn 就能夠了css

背景

以前本身搭建了一個 vue + tp5.1 的後臺項目(https://segmentfault.com/a/11...),坑不少,其中一個就是資源加載的方案,因爲是後臺項目,以前一直沒放在心上,看到一些資源優化方案後(https://juejin.im/post/5a2910...),以爲有必要弄一下。html

老版本

經過:npm run build 後

圖片描述

能夠看到, 文件大小最大的 820kb,即便用 Gzipped 壓縮後也是 219kb,隨着項目不斷變大,這個值還會不斷增大vue

使用CDN加速

這裏請先參考 https://juejin.im/post/5a2910...,這裏只作vue-cli@3.0的配置修改vue-router

  • index.html文件
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
    <title>VUE後臺管理系統</title>
    <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<script src="https://unpkg.com/vue@2.5.16/dist/vue.runtime.min.js"></script>
<script src="https://unpkg.com/vuex@3.0.1/dist/vuex.min.js"></script>
<script src="https://unpkg.com/vue-router@3.0.1/dist/vue-router.min.js"></script>
<script src="https://unpkg.com/element-ui/lib/index.js"></script>

</body>

</html>
  • vue.config.js 文件
module.exports = {
    baseUrl: process.env.NODE_ENV === "production" ? "./" : "/",
    outputDir: process.env.outputDir,
    configureWebpack: {
        externals: {
            vue: "Vue",
            vuex: "Vuex",
            "vue-router": "VueRouter",
            "element-ui": "ELEMENT"
        }
    }
};

頁面優化後

圖片描述

相關文章
相關標籤/搜索