美文网首页Webpack
create-react-app webpack配置打包清除co

create-react-app webpack配置打包清除co

作者: 初心不改_0055 | 来源:发表于2018-12-06 10:30 被阅读0次

    可以在node_module/react-scripts/config/webpack.config.dev.js(跟webpack.config.prod.js)中看到:


    image.png

    修改成:

    new webpack.optimize.UglifyJsPlugin({
            compress: {
              warnings: false,
              drop_debugger: true,
              drop_console: true,//不打印log
            },
          })
    

    打包就ok了

    相关文章

      网友评论

        本文标题:create-react-app webpack配置打包清除co

        本文链接:https://www.haomeiwen.com/subject/mrsncqtx.html