Skip to content

Commit cabd893

Browse files
committed
Fix internal fragmtn links in optimization.md
1 parent 42cb344 commit cabd893

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/configuration/optimization.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ module.exports = {
293293

294294
`bool`
295295

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.
297297
Dead code elimination in minimizers will benefit from this and can remove unused exports.
298298
By default `optimization.usedExports` is enabled in `production` [mode](/concepts/mode/) and disabled elsewise.
299299

@@ -312,8 +312,8 @@ module.exports = {
312312

313313
`bool`
314314

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.
317317

318318
__webpack.config.js__
319319

0 commit comments

Comments
 (0)