We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf7e363 commit 8bf1fe8Copy full SHA for 8bf1fe8
src/content/configuration/optimization.md
@@ -45,11 +45,13 @@ __webpack.config.js__
45
46
47
```js
48
+const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
49
+
50
module.exports = {
51
//...
52
optimization: {
53
minimizer: [
- new webpack.optimize.UglifyJsPlugin({ /* your config */ })
54
+ new UglifyJsPlugin({ /* your config */ })
55
]
56
}
57
0 commit comments