如果webpack已在内部使用它,为什么我需要terser?
我需要一些非默认选项,例如最终捆绑包中的注释条,发现我可以做到这一点:
const TerserPlugin = require('terser-webpack-plugin');
module.exports = {
entry: /*...*/
output: /*...*/,
module: /*...*/,
optimization: {
minimizer: [
new TerserPlugin({
terserOptions: {
output: {
comments: false,
},
},
}),
],
},
}
是否可以在不需要terser-webpack-plugin
的情况下配置webpack?