webpack 4 disable uglifyjs-webpack-plugin

前端 未结 2 963
北海茫月
北海茫月 2021-02-04 05:51

I have had this problem for the last 2 days. So I decided to completely disable uglifyjs-webpack-plugin from webpack build process. I was not able to find anyth

2条回答
  •  抹茶落季
    2021-02-04 05:56

    module.exports = {
        optimization:{
            minimize: false, // <---- disables uglify.
            // minimizer: [new UglifyJsPlugin()] if you want to customize it.
        }
    }
    

提交回复
热议问题