Bootstrap

react项目在开发环境中清除console.log

当前版本:"react": "^16.12.0"

在node_module/react-scripts/config/webpack.config.js和config/webpack.config.js文件下修改

图片

compress: {
          warnings: false,
          drop_debugger: true,
          drop_console: true,//不打印log
        },

原文链接https://www.jianshu.com/p/0983f273cd0e

;