Remove console.logs with Webpack & Uglify

前端 未结 8 1453
谎友^
谎友^ 2020-11-28 23:59

I am trying to remove console.logs with Webpack\'s Uglify plugin but it seems that Uglify plugin that comes bundled with Webpack doesn\'t have that option, its

8条回答
  •  天命终不由人
    2020-11-29 00:15

    This is the new syntax for Webpack v4:

    optimization: {
      minimizer: [
        new UglifyJSPlugin({
          uglifyOptions: {
            compress: {
              drop_console: true
            },
            output: {
              comments: false
            }
          },
        }),
      ],
    },
    

提交回复
热议问题