Skip to content

Commit

Permalink
Refine docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Nov 5, 2022
1 parent 29ae273 commit 8f320b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/999-big-list-of-options.md
Expand Up @@ -1894,9 +1894,9 @@ Determines after how many runs cached assets that are no longer used by plugins
Type: `number`<br> CLI: `--experimentalMinChunkSize <size>`<br> Default: `0`
Set a minimal chunk size target when code-splitting. When this value is greater than `0`, Rollup will try to merge any chunk that does not have side effects when executed, i.e. it only contains function definitions etc., and is below this size limit into another chunk that is likely to be loaded under similar conditions.
Set a minimal chunk size target for code-splitting setups. When this value is greater than `0`, Rollup will try to merge any chunk that does not have side effects when executed, i.e. any chunk that only contains function definitions etc., and is below this size limit into another chunk that is likely to be loaded under similar conditions.
This will mean that the generated bundle will possibly load code that is not needed yet in order to need fewer chunks. The condition for the merged chunks to be side effect free ensures that this does not change behaviour.
This will mean that the generated bundle will possibly load code that is not required yet in order to reduce the number of chunks. The condition for the merged chunks to be side effect free ensures that this does not change behaviour.
Unfortunately, due to the way chunking works, chunk size is measured before any plugins like minifiers ran, which means this number is slightly inaccurate.
Expand Down

0 comments on commit 8f320b4

Please sign in to comment.