赞
踩
1
npm install babel-plugin-transform-remove-console --save-dev
2
在config.js添加
外面判断生产环境还是开发环境
- let remove_console= []
-
- if(process.env.NODE_ENV === 'production'){
- remove_console.push("transform-remove-console")
- }
'运行
build里
- build: {
- babel:{
- 'plugins': remove_console
- }
- }
完美运行
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。