Vue打包上线时移除console(babel-plugin-transform-remove-console)-文章-关尔先生

Vue打包上线时移除console(babel-plugin-transform-remove-console) 前端

使用babel-plugin-transform-remove-console插件在Vue运行 npm run build 打包时移除console

关尔先生2021-10-14 17:35:39
# Vue打包上线时移除console ## 安装插件 `babel-plugin-transform-remove-console`
1
npm install babel-plugin-transform-remove-console --save-dev
## 在babel.config.js进行配置 注意是在 `env.production.plugins` 这个数组中添加 `"transform-remove-console"`
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = {
presets: [
"@vue/cli-plugin-babel/preset"
],
env: {
development: { },
production: {
plugins: ["transform-remove-console"]
}
}
};

## 运行 `npm run build` 打包即可

vueconsolebuild打包移除console

上一篇:git如何批量删除本地和远程分支

下一篇:php 跨域共享session (仅二级域名)

本文链接: http://www.nanshanqiao.com/zz_article/86.html

暂无评论

评论