VueCLI4打包时清除console.log
1.在项目中下载依赖包npm install babel-plugin-transform-remove-console -g2.在项目babel.config.js中配置let transformRemoveConsolePlugin = [];// 生产环境清除console.log的信息if (process.env.NODE_ENV === "production") {transform
·
1.在项目中下载依赖包
npm install babel-plugin-transform-remove-console -g
2.在项目babel.config.js中配置
let transformRemoveConsolePlugin = [];
// 生产环境清除console.log的信息
if (process.env.NODE_ENV === "production") {
transformRemoveConsolePlugin = ["transform-remove-console"];
}
module.exports = {
plugins: [
...transformRemoveConsolePlugin
]
};
更多推荐
已为社区贡献1条内容
所有评论(0)