const TerserPlugin = require('terser-webpack-plugin');
module.exports = {
//此处省略其他配置。。。
configureWebpack: {
plugins:[
//此处省略其他配置。。。
new TerserPlugin({
parallel: true,
terserOptions: {
ecma: undefined,
warnings: false,
parse: {},
compress: {
drop_console: true,
drop_debugger: false,
pure_funcs: ['console.log'], // 移除console
},
},
}),
]
},
//此处省略其他配置。。。
}