umi3.5中如何使用babel-plugin-transform-remove-console
时间: 2023-08-02 22:07:46 浏览: 203
umi-plugin-alioss:umi-plugin-alioss 打包上传OSS
在 umi3.5 中使用 babel-plugin-transform-remove-console 插件可以通过以下步骤实现:
1. 安装插件:
```
npm install babel-plugin-transform-remove-console --save-dev
```
2. 在 umi 配置文件中的 babel 字段中添加插件:
```
// .umirc.js 或 config/config.js
export default {
// ...
babel: {
plugins: [
["transform-remove-console"]
]
},
// ...
}
```
这样就可以在打包时移除 console.log 等调试信息了。注意这会影响到项目中的所有 console 调用,建议只在生产环境使用。
阅读全文