Skip to content

Instantly share code, notes, and snippets.

@erasmo-marin
Created March 29, 2017 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erasmo-marin/dc596824e06c1ab1658f531dcde7b96e to your computer and use it in GitHub Desktop.
Save erasmo-marin/dc596824e06c1ab1658f531dcde7b96e to your computer and use it in GitHub Desktop.
plugins: [
new webpack.optimize.UglifyJsPlugin({
output: {
comments: false
},
mangle: true,
sourcemap: false,
debug: false,
minimize: true,
compress: {
warnings: false,
screw_ie8: true,
conditionals: true,
unused: true,
comparisons: true,
sequences: true,
dead_code: true,
evaluate: true,
if_return: true,
join_vars: true
}
})]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment