You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
503 B
15 lines
503 B
module.exports = {
|
|
chainWebpack: (config) => {
|
|
// 发行或运行时启用了压缩时会生效
|
|
config.optimization.minimizer('terser').tap((args) => {
|
|
const compress = args[0].terserOptions.compress
|
|
// 非 App 平台移除 console 代码(包含所有 console 方法,如 log,debug,info...)
|
|
compress.drop_console = false
|
|
compress.pure_funcs = [
|
|
'__f__', // App 平台 vue 移除日志代码
|
|
// 'console.debug' // 可移除指定的 console 方法
|
|
]
|
|
return args
|
|
})
|
|
}
|
|
}
|
|
|