首頁 > 軟體

vue 程式碼壓縮優化方式

2022-03-28 19:00:39

vue程式碼壓縮優化

設定productionSourceMap為false

如果不需要生產環境的 source map,可以將其設定為 false 以加速生產環境構建。

設定為false打包時候不會出現.map檔案

module.exports = {
    productionSourceMap: false
}

程式碼壓縮

安裝uglifyjs-webpack-plugin外掛,可以去除專案中console.log和debugger 

npm install uglifyjs-webpack-plugin --save
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
// 生產環境相關設定
if (isProduction) {
    // 程式碼壓縮
    config.plugins.push(
        new UglifyJsPlugin({
            uglifyOptions: {
                //生產環境去除console等資訊
                compress: {
                    warnings: false, // 若打包錯誤,則註釋這行
                    drop_debugger: true,//是否移除debugger
                    drop_console: true,
                    pure_funcs: ['console.log']//移除console
                }
            },
            sourceMap: false,
            parallel: true
        })
    )
}

圖片資源壓縮

 安裝 image-webpack-loader 外掛,可以將大圖片進行壓縮從而縮小打包體積 

npm install image-webpack-loader --save
    chainWebpack: config => {
        // ============壓縮圖片 start============
        config.module
            .rule('images')
            .use('image-webpack-loader')
            .loader('image-webpack-loader')
            .options({ bypassOnDebug: true })
            .end()
        // ============壓縮圖片 end============
    }

開啟gzip壓縮

開啟gzip壓縮,可以優化http請求,提高載入速度 

npm install compression-webpack-plugin --save-dev
const CompressionPlugin = require("compression-webpack-plugin");
// 開啟gzip壓縮
config.plugins.push(new CompressionPlugin({
    algorithm: 'gzip',
    test: new RegExp("\.(" + ["js", "css"].join("|") + ")$"), // 匹配副檔名
    // threshold: 10240, // 對超過10k的資料進行壓縮
    threshold: 5120, // 對超過5k的資料進行壓縮
    minRatio: 0.8,
    cache: true, // 是否需要快取
    deleteOriginalAssets:false  // true刪除原始檔(不建議);false不刪除原始檔
 }))

vuecli3程式碼壓縮混淆

最近被某大公司大佬虐了,要求混淆用vuecli3寫的程式碼(啥敏感資訊都沒有,混淆個什麼混淆...)

現將混淆流程記錄如下

1、安裝 “uglifyjs-webpack-plugin”

cnpm i --save uglifyjs-webpack-plugin

沒有安裝cnpm的同學可以用npm

2、在專案根目錄下建立一個名為 vue.config.js的檔案

3、在vue.config.js中引入uglifyjs-webpack-plugin

const UglifyPlugin = require('uglifyjs-webpack-plugin')

4、在vue.config.js中設定uglifyjs-webpack-plugin

module.exports = {
  configureWebpack: (config) => {
    if (process.env.NODE_ENV == 'production') {
      // 為生產環境修改設定
      config.mode = 'production'
      // 將每個依賴包打包成單獨的js檔案
      let optimization = {
        minimizer: [new UglifyPlugin({
            uglifyOptions: {
                warnings: false,
                compress: {
                  drop_console: true, 
                  drop_debugger: false,
                  pure_funcs: ['console.log'] 
                }
            }
         })]
      }
      Object.assign(config, {
        optimization
      })
    } else {
      // 為開發環境修改設定
      config.mode = 'development'
    }
  }
};

這就可以了,接下來大家可以打包試試了

cnpm run build

如果報錯的話,估計是uglifyjs-webpack-plugin版本又更新了,可能需要修改設定中的 “minimizer”節點,官方檔案地址:https://www.npmjs.com/package/uglifyjs-webpack-plugin

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com