Skip to content

Commit

Permalink
Refine docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Feb 17, 2023
1 parent 2690498 commit a149261
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/configuration-options/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2506,13 +2506,15 @@ This will rename the dynamic import function to the chosen name when outputting
### output.experimentalDeepDynamicChunkOptimization
_This option is no longer needed._
| | |
| --: | :-- |
| Type: | `boolean` |
| CLI: | `--experimentalDeepDynamicChunkOptimization`/`--no-experimentalDeepDynamicChunkOptimization` |
| Default: | `false` |
This option was used to prevent performance issues with the full chunk optimization algorithm. As the algorithm is much faster now, this option is now ignored by Rollup and should not longer be used.
This option was used to prevent performance issues with the full chunk optimization algorithm. As the algorithm is much faster now, this option is now ignored by Rollup and should no longer be used.
### output.preferConst
Expand Down
2 changes: 1 addition & 1 deletion src/utils/options/mergeOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ async function mergeOutputOptions(
dynamicImportInCjs: getOption('dynamicImportInCjs'),
entryFileNames: getOption('entryFileNames'),
esModule: getOption('esModule'),
experimentalDeepDynamicChunkOptimization: undefined,
experimentalDeepDynamicChunkOptimization: getOption('experimentalDeepDynamicChunkOptimization'),
experimentalMinChunkSize: getOption('experimentalMinChunkSize'),
exports: getOption('exports'),
extend: getOption('extend'),
Expand Down

0 comments on commit a149261

Please sign in to comment.