You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/configuration/optimization.mdx
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -424,7 +424,7 @@ module.exports = {
424
424
425
425
`boolean = false`
426
426
427
-
Tells webpack to detect and remove modules from chunks when these modules are already included in all parents. Setting `optimization.removeAvailableModules` to `true` will enable this optimization. Enabled by default in [`production` mode](/configuration/mode/).
427
+
Tells webpack to detect and remove modules from chunks when these modules are already included in all parents. Setting `optimization.removeAvailableModules` to `true` will enable this optimization.
428
428
429
429
**webpack.config.js**
430
430
@@ -437,7 +437,7 @@ module.exports = {
437
437
};
438
438
```
439
439
440
-
W> `optimization.removeAvailableModules` reduces the performance of webpack, and will be disabled in `production` mode by default in next major release. Disable it in `production` mode if you want extra build performance.
440
+
W> `optimization.removeAvailableModules` reduces the performance of webpack.
0 commit comments