Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created October 22, 2017 15:53
Show Gist options
  • Save tkssharma/735fd3e97bfabda214b6da0170d7c2d3 to your computer and use it in GitHub Desktop.
Save tkssharma/735fd3e97bfabda214b6da0170d7c2d3 to your computer and use it in GitHub Desktop.
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin({
mangle: true,
compress: {
warnings: false, // Suppress uglification warnings
pure_getters: true,
unsafe: true,
unsafe_comps: true,
screw_ie8: true
},
output: {
comments: false,
},
exclude: [/\.min\.js$/gi] // skip pre-minified libs
}),
new webpack.IgnorePlugin(/^\.\/locale$/, [/moment$/]),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment