Reputation: 6695
Since webpack 4, the production output gets minified using UglifyJS by default. But which version of UglifyJs is implemented in webpack 4.16.5?
Upvotes: 0
Views: 83
Reputation: 6841
The version used is 3.4.3
, used with plugin: https://github.com/webpack-contrib/uglifyjs-webpack-plugin/blob/master/package.json#L61
Upvotes: 1