1.开启gzip压缩

安装

npm ``install --save-dev compression-webpack-plugin

配置

  1. const path = require("path");
  2. const CompressionWebpackPlugin = require('compression-webpack-plugin')
  3. const productionGzipExtensions = ['js', 'css', 'json', 'txt'];
  4. const env = process.env.NODE_ENV;
  5. const isTrue = env === 'development';
  6. module.exports = {
  7. productionSourceMap: false,
  8. configureWebpack: config => {
  9. console.log('======' + env + '========');
  10. if (env === 'production') {
  11. config.plugins.push(
  12. new CompressionWebpackPlugin({
  13. test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'),
  14. threshold: 10240, // 对超过10k的数据压缩
  15. deleteOriginalAssets: false, // 不删除源文件
  16. }),
  17. );
  18. }
  19. },
  20. };

打包

  1. 网上说打包后是.gz结尾,但我打包后是.gzip这两个不影响使用

image.png

服务器

我们把打包后的dis文件夹放到服务器中,看加载的文件发现,速度该慢还是慢,没有任何改变,这是因为我们需要开启服务器的gzip功能,
image.png

nginx 配置,其他服务也可开启,具体方法自行百度

  1. ## 开启gaip nginx安装的时候,这个地方默认是被注释掉的,搜索一下,打开就行
  2. gzip on;
  3. ## 上面是开启,这段是加载类型一定要有
  4. gzip_types text/plain application/x-javascript application/javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;

2.删除console

配置

  1. const path = require('path');
  2. const TerserPlugin = require('terser-webpack-plugin');
  3. const env = process.env.NODE_ENV;
  4. const isTrue = env === 'development';
  5. module.exports = {
  6. configureWebpack: config => {
  7. console.log('======' + env + '========');
  8. if (env === 'production') {
  9. config.plugins.push(
  10. new TerserPlugin({
  11. extractComments: true,
  12. cache: true,
  13. parallel: true,
  14. sourceMap: true,
  15. terserOptions: {
  16. extractComments: 'all',
  17. compress: {
  18. drop_console: true,
  19. },
  20. },
  21. })
  22. );
  23. }
  24. },
  25. };

3. 三方库采用CDN

疑问:

vue在进行打包的时候,第三方库一般会使用cdn引入,减小打包体积.既然使用cdn引入了为什么还要配置externals呢?直接全局使用就行了,是为了可以继续使用import require语句吗?

解答:

配置 externals 是为了防止将某些 import 的包(package)打包到 bundle 中,而是在运行时(runtime)再去从外部获取这些扩展依赖(external dependencies)。它的主要作用是为了部署生成环境的时候可以将一些第三方库排除在打包的范围之外,可以通过引入CDN的方式减少文件体积,提升浏览速度。意思就是配置了 external 以后就算原来使已经npm安装依赖了,并且页面上也import引入了,打包的时候也会自动忽略这些包。
当你接手一个老项目,需要优化。里面有许多页面通过import的方式引入了某个第三方库,但是现在的需求是需要将这个第三方库从bundle里抽离出来,通过CDN的方式引入,这时候你就只需要在externals里配置一下就可以了,而不需要去每一个页面单独修改。
另外,也不排除有些无法通过CDN的方式来引入,并且只工作在开发环境用来测试的库,这时候external属性就是一个很好的解决办法

代码

index.html 引入

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  7. <title><%= htmlWebpackPlugin.options.title %></title>
  8. <!-- 使用CDN的CSS文件 -->
  9. <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.css) { %>
  10. <link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="external nofollow" rel="external nofollow" rel="preload" as="style" />
  11. <link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="external nofollow" rel="external nofollow" rel="stylesheet" />
  12. <% } %>
  13. <!-- 使用CDN的JS文件 -->
  14. <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.js) { %>
  15. <link href="<%= htmlWebpackPlugin.options.cdn.js[i] %>" rel="external nofollow" rel="preload" as="script" />
  16. <% } %>
  17. </head>
  18. <body>
  19. <div id="app"></div>
  20. <script src="https://webapi.amap.com/maps?v=1.4.15&key=a06d5d314aaec9279c50dd92d03b132c&plugin=AMap.Geocoder"></script>
  21. <script src="//webapi.amap.com/ui/1.0/main.js"></script>
  22. <script src="./js/lib.flexible.js"></script>
  23. <!-- 内置文件将会自动注入 -->
  24. <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.js) { %>
  25. <script src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
  26. <% } %>
  27. </body>
  28. </html>

vue.config.js 配置

  1. const isTrue = env === 'development';
  2. const cdn = {
  3. css: [],
  4. js: [
  5. 'https://cdn.bootcss.com/vue/2.5.17/vue.runtime.min.js',
  6. 'https://cdn.bootcss.com/vue-router/3.0.1/vue-router.min.js',
  7. 'https://cdn.bootcss.com/vuex/3.0.1/vuex.min.js',
  8. 'https://cdn.bootcss.com/axios/0.18.0/axios.min.js',
  9. 'https://cdn.jsdelivr.net/npm/hls.js@latest',
  10. 'https://gallerybox.echartsjs.com/dep/echarts/3.8.0/echarts.min.js',
  11. 'https://cdn.bootcss.com/axios/0.19.2/axios.min.js',
  12. 'https://cdn.bootcdn.net/ajax/libs/xlsx/0.15.6/xlsx.mini.min.js',
  13. ],
  14. };
  15. module.exports = {
  16. chainWebpack: config => {
  17. // 生产环境配置
  18. if (env === 'production') {
  19. // 生产环境注入cdn
  20. config.plugin('html').tap(args => {
  21. args[0].cdn = cdn;
  22. return args;
  23. });
  24. }
  25. },
  26. configureWebpack: config => {
  27. console.log('======' + env + '========');
  28. if (env === 'production') {
  29. console.log('生产环境');
  30. config.externals = {
  31. XLSX: 'XLSX',
  32. echarts: 'echarts',
  33. Hls: 'Hls',
  34. axios: 'axios',
  35. vue: 'Vue',
  36. vuex: 'Vuex',
  37. 'vue-router': 'VueRouter',
  38. axios: 'axios',
  39. };
  40. }
  41. },
  42. }

注意:

由于 webpack 打包后的文件是使用 link 标签引入的,且都在 header 中引入,所以使用cdn引入 vue vuex 等js的时候可能会报错,因为 mian.js 先加载这个时候你引入的 vue 还没有加载呢.我们这里使用 htmlWebpackPluginlink 标签解决这个问题

4. dll 注入

优化前:

image.png

优化后:

image.png

优化步骤:

  • 需要依赖
    • clean-webpack-plugin 清除生成的文件
    • add-asset-html-webpack-plugin 把生成的js文件添加到首页中
  • 根目录新建 webpack.dll.config.js ,内容如下

    1. const path = require("path");
    2. const webpack = require("webpack");
    3. // dll文件存放的目录
    4. const dllPath = "public/vendor";
    5. module.exports = {
    6. entry: {
    7. // 需要引入的库
    8. vendor: ["vue", "vue-router", "vuex", "axios", "element-ui"],
    9. },
    10. output: {
    11. path: path.join(__dirname, "public/vendor"),
    12. filename: "[name].dll.js",
    13. library: "[name]_[hash]", // vendor.dll.js中暴露出的全局变量名
    14. },
    15. plugins: [
    16. // 清除之前的dll文件
    17. new CleanWebpackPlugin(["*.*"], {
    18. root: path.join(__dirname, dllPath),
    19. }),
    20. // 设置环境变量
    21. new webpack.DefinePlugin({
    22. "process.env": {
    23. NODE_ENV: "production",
    24. },
    25. }),
    26. // manifest.json 描述动态链接库包含了哪些内容
    27. new webpack.DllPlugin({
    28. path: path.join(__dirname, "public/vendor", "[name]-manifest.json"),
    29. name: "[name]_[hash]",
    30. context: process.cwd(),
    31. }),
    32. ],
    33. };
  • package.json 增加生成命令

    1. "scripts": {
    2. "serve": "vue-cli-service serve --mode serve",
    3. "build": "vue-cli-service build --mode build",
    4. + "dll": "webpack -p --progress --config ./build/webpack.dll.config.js"
    5. },
  • 运行生成命令 npm dll 会在 pubilc 文件夹中生成

  • vue.config.js 配置 ```javascript

const path = require(‘path’); const webpack = require(‘webpack’); const AddAssetHtmlPlugin = require(‘add-asset-html-webpack-plugin’); const env = process.env.NODE_ENV; const isTrue = env === ‘development’;

module.exports = { publicPath: ‘./‘, productionSourceMap: isTrue, assetsDir: ‘static’, configureWebpack: config => { console.log(‘======’ + env + ‘========’); if (env === ‘production’) { config.plugins.push( // 将 dll 注入到 生成的 html 模板中 new AddAssetHtmlPlugin({ // dll文件位置 filepath: path.resolve(__dirname, ‘./public/vendor/*.js’), // dll 引用路径 publicPath: ‘./vendor’, // dll最终输出的目录 outputPath: ‘./vendor’, }), new webpack.DllReferencePlugin({ context: process.cwd(), manifest: require(‘./public/vendor/vendor-manifest.json’), }) ); } }, };

  1. <a name="1raKA"></a>
  2. ## 5.设置别名
  3. <a name="wihDY"></a>
  4. ### 配置
  5. ```javascript
  6. let resolve = dir => {
  7. return path.resolve(__dirname, dir);
  8. };
  9. module.exports = {
  10. chainWebpack: config => {
  11. // 省略后缀名,vue-cli3默认配置
  12. config.resolve.extensions.add('.js').add('.vue');
  13. config.resolve.alias
  14. // vue-cli3自带
  15. .set('@', resolve('src'))
  16. .set('@assets', resolve('src/assets'))
  17. .set('@images', resolve('src/images'))
  18. .set('@cmp', resolve('src/components'))
  19. .set('@views', resolve('src/views'));
  20. }
  21. }

6.优化请求数

Prefetch

yarn build以后我们prefetch

  1. prefetch

7.自适应

8.复制大文件

安装

  1. yarn add copy-webpack-plugin -D

配置

  1. const path = require('path');
  2. const cesiumBuild = './node_modules/cesium/Build/Cesium'; //cesium的目录
  3. const webpack = require('webpack');
  4. const CopywebpackPlugin = require('copy-webpack-plugin'); //复制文件
  5. module.exports={
  6. chainWebpack: config => {
  7. config.plugin('copy').use(CopywebpackPlugin, [
  8. [
  9. { from: path.join(cesiumBuild, 'Workers'), to: 'resources/Workers' },
  10. { from: path.join(cesiumBuild, 'Assets'), to: 'resources/Assets' },
  11. { from: path.join(cesiumBuild, 'Widgets'), to: 'resources/Widgets' },
  12. {
  13. from: path.join(cesiumBuild, 'ThirdParty'),
  14. to: 'resources/ThirdParty'
  15. }
  16. ]
  17. ]);
  18. // 这句话我也不知道什么意思
  19. config.plugin('define').use(webpack.DefinePlugin, [{ CESIUM_BASE_URL: JSON.stringify('./resources/') }]);
  20. }
  21. }

https://www.jb51.net/article/160039.htm

9.打包分析

为优化vue项目性能,需要使用webpack-bundle-analyzer分析报文件,找出最占用空间的插件有哪些,对应做出优化
网上看了一些网站,有的写的太麻烦了,现将最简单的一种写出来供大家参考

安装:

  1. yarn add webpack-bundle-analyzer -D

配置

  1. module.exports = {
  2. chainWebpack: config => {
  3. config
  4. .plugin('webpack-bundle-analyzer')
  5. .use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin)
  6. }
  7. }

运行

npm run serve
访问 http://localhost:8888
注意8888端口是写死的,不可以更改,如果本地已经启动了8888端口,会报错

10.全局样式

安装

  1. yarn add style-resources-loader vue-cli-plugin-style-resources-loader -D

配置

  1. pluginOptions: {
  2. 'style-resources-loader': {
  3. preProcessor: 'less',
  4. patterns: [path.resolve(__dirname, './src/assets/style/mixin.less'), path.resolve(__dirname, './src/assets/style/variable.less')]
  5. }
  6. },

11.devServer

  1. devServer: {
  2. host: '0.0.0.0',
  3. open: true,
  4. hot: true,
  5. port: 3000,
  6. proxy: {
  7. '/baiduApi': {
  8. target: 'https://restapi.amap.com', //访问地址
  9. changeOrigin: true,
  10. secure: false, //只有代理https 地址需要次选项
  11. logLevel: 'debug', //可以打印出代理后请求的
  12. pathRewrite: {
  13. '^/baiduApi': ''
  14. }
  15. }
  16. }
  17. },