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.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -293,7 +293,7 @@ module.exports = {
293
293
294
294
`bool`
295
295
296
-
Tells webpack to determine used exports for each module. This depends on [`optimization.providedExports`](#optimization-occurrenceorder). Information collected by `optimization.usedExports` is used by other optimizations or code generation i.e. exports are not generated for unused exports, export names are mangled to single char identifiers when all usages are compatible.
296
+
Tells webpack to determine used exports for each module. This depends on [`optimization.providedExports`](#optimizationoccurrenceorder). Information collected by `optimization.usedExports` is used by other optimizations or code generation i.e. exports are not generated for unused exports, export names are mangled to single char identifiers when all usages are compatible.
297
297
Dead code elimination in minimizers will benefit from this and can remove unused exports.
298
298
By default `optimization.usedExports` is enabled in `production`[mode](/concepts/mode/) and disabled elsewise.
299
299
@@ -312,8 +312,8 @@ module.exports = {
312
312
313
313
`bool`
314
314
315
-
Tells webpack to find segments of the module graph which can be safely concatenated into a single module. Depends on [`optimization.providedExports`](#optimization-providedexports) and [`optimization.usedExports`](#optimization-usedexports).
316
-
By default `optimization.concatenateModules` is enabled in `production`[mode](/concepts/mode/) and disabled elsewise.
315
+
Tells webpack to find segments of the module graph which can be safely concatenated into a single module. Depends on [`optimization.providedExports`](#optimizationprovidedexports) and [`optimization.usedExports`](#optimizationusedexports).
316
+
By default `optimization.concatenateModules` is enabled in `production`[mode](/concepts/mode/) and disabled elsewise.
0 commit comments