美文网首页
解决!!前端项目打包后生成的chunk-vendors文件过大,

解决!!前端项目打包后生成的chunk-vendors文件过大,

作者: Zach_1991 | 来源:发表于2021-10-27 13:57 被阅读0次

    第一步安装插件 compression-webpack-plugin
    npm install --save-dev compression-webpack-plugin

    第二步修改vue.config.js配置文件

    
    const webpack = require('webpack')
    const CompressionWebpackPlugin = require('compression-webpack-plugin')
    const productionGzipExtensions = ['js', 'css']
    const isProduction = process.env.NODE_ENV === 'production'
    
    module.exports = {
      lintOnSave: false,
      runtimeCompiler: true,
      publicPath: './', // 设置打包文件相对路径
      // 这是前端解决跨域的代码
      devServer: {
        // open: process.platform === 'darwin',
        // host: 'localhost',
        port: 8080,
        // open: true, //配置自动启动浏览器
        proxy: {
          '/api': {
            target: ``,//写上接口基地址
            changeOrigin: true,
            ws: true,
            // secure: false, //如果是http接口,需要配置此参数
            pathRewrite: {
              '^/api': ''
            }
          }
        }
      },
      configureWebpack:{
        resolve:{
          alias:{
            '@':path.resolve(__dirname, './src'),
            '@i':path.resolve(__dirname, './src/assets'),
          } 
        },
        plugins: [
          new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
          
          // 下面是下载的插件的配置
          new CompressionWebpackPlugin({
            algorithm: 'gzip',
            test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'),
            threshold: 10240,
            minRatio: 0.8
          }),
          new webpack.optimize.LimitChunkCountPlugin({
            maxChunks: 5, 
            minChunkSize: 100
          })
        ]
      }
    }
    

    第三步修改nginx配置

        listen 8087;
        server_name localhost;
    
        gzip on;
        gzip_min_length 1k;
        gzip_comp_level 9;
        gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
        gzip_vary on;
        gzip_disable "MSIE [1-6]\.";
    }
    

    最后看下效果

    image.png

    到此结束!如果遇到安装插件后 npm run build 报错 就行将插件版本降低 插件版本过高的原因 我用的是5.1.1

    相关文章

      网友评论

          本文标题:解决!!前端项目打包后生成的chunk-vendors文件过大,

          本文链接:https://www.haomeiwen.com/subject/teqpaltx.html