switch uglify to compress:true,mangle:true (#2852)

master
Nolan Lawson 8 years ago committed by Eugen Rochko
parent bd71327180
commit 8009366231
  1. 18
      config/webpack/production.js

@ -12,22 +12,8 @@ module.exports = merge(sharedConfig, {
plugins: [ plugins: [
new webpack.optimize.UglifyJsPlugin({ new webpack.optimize.UglifyJsPlugin({
compress: { compress: true,
unused: true, mangle: true,
evaluate: true,
booleans: true,
drop_debugger: true,
dead_code: true,
pure_getters: true,
negate_iife: true,
conditionals: true,
loops: true,
cascade: true,
keep_fargs: false,
warnings: true
},
mangle: false,
output: { output: {
comments: false comments: false

Loading…
Cancel
Save