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 = true
compress.pure_funcs = [
'__f__', // App 平台 vue 移除日志代码
// 'console.debug' // 可移除指定的 console 方法
]
return args
})
}
};
- 发布:2021-11-25 14:17
- 更新:2023-11-28 14:21
- 阅读:545
产品分类: uniapp/H5
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: 18363.1556
HBuilderX类型: 正式
HBuilderX版本号: 3.2.16
浏览器平台: Chrome
浏览器版本: 95
项目创建方式: HBuilderX
示例代码:
操作步骤:
打包发布H5
打包发布H5
预期结果:
删除console.log
删除console.log
实际结果:
没有删除
没有删除
CODE_XU
请问什么版本。3.5.3 版本未测试出此 bug
2022-08-30 17:45