Remove console.logs with Webpack & Uglify

前端 未结 8 1449
谎友^
谎友^ 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条回答
  •  旧时难觅i
    2020-11-29 00:14

    Use this is better and works const UglifyEsPlugin = require('uglify-es-webpack-plugin')

    module.exports = {
    plugins: [
            new UglifyEsPlugin({
                compress:{
                    drop_console: true
                }
            }),
    ] 
    }
    

提交回复
热议问题