1.首先安装 ``` babel-plugin-transform-remove-console```插件
```base
yarn add babel-plugin-transform-remove-console
```
2.找到根目录```babel.config.js```添加如下
```javascript
const plugins = ["@vue/babel-plugin-transform-vue-jsx"]
// 生产环境移除console
if (process.env.NODE_ENV === 'production') {
plugins.push("transform-remove-console")
}
module.exports = {
plugins: plugins,
presets: [
'@vue/cli-plugin-babel/preset'
]
}
```
博客描述
vue项目需要在生产环境去掉开发中的断点和调试,保证代码安全性!