码迷,mamicode.com
首页 > 其他好文 > 详细

taro3.0包体积过大问题

时间:2020-07-13 18:27:18      阅读:325      评论:0      收藏:0      [点我收藏+]

标签:rod   npm   pac   out   --   web   use   bpa   extract   

npm i --save-dev terser-webpack-plugin
/config/index.js


import TerserPlugin from "terser-webpack-plugin"


const config = {
    mini: {
      webpackChain(chain, webpack) {
        chain.mode("production");
        chain.optimization.minimize(true);
        chain.plugin("terser").use(TerserPlugin, [
          {
            cache: true,
            extractComments: false,
            terserOptions: {
              output: {
                comments: false
              }
            }
          }
        ]);
      }
  }


}

 

taro3.0包体积过大问题

标签:rod   npm   pac   out   --   web   use   bpa   extract   

原文地址:https://www.cnblogs.com/chenlw/p/13294414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!