> 文章列表 > vue项目打包降低体积终极法则汇总

vue项目打包降低体积终极法则汇总

vue项目打包降低体积终极法则汇总

网上看了很多适用的不适用的办法,我这里分享给大家我一路实践过的优化之路

开启Gzip

  1. 安装插件:npm i compression-webpack-plugin -D
  2. vue.config.js文件顶部引入:const CompressionWebpackPlugin = require(\'compression-webpack-plugin\');
  3. 在配置处使用
module.exports = defineConfig({configureWebpack: {plugins: [new CompressionW