Created
October 22, 2017 15:53
-
-
Save tkssharma/735fd3e97bfabda214b6da0170d7c2d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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