标签: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 } } } ]); } } }
标签:rod npm pac out -- web use bpa extract
原文地址:https://www.cnblogs.com/chenlw/p/13294414.html