Skip to content

Commit 17317f9

Browse files
authored
docs(glossary): try to clarify the relationship between chunks and bundles (#1336)
Resolves #970
1 parent 9f6bfcf commit 17317f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/glossary.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ This index lists common terms used throughout the webpack ecosystem.
2222

2323
## C
2424

25+
- **Chunk**: This webpack-specific term is used internally to manage the bundling process. Bundles are composed out of chunks, of which there are several types (e.g. entry and child). Typically, _chunks_ directly correspond with the output _bundles_ however, there are some configurations that don't yield a one-to-one relationship.
2526
- [**Code Splitting**](/guides/code-splitting/): Refers to dividing your code into various bundles/chunks which you can then load on demand instead of loading a single bundle containing everything.
26-
- **Chunk**: This webpack-specific term is used internally to manage the bundling process. Bundles are composed out of chunks, of which there are several types (e.g. entry and child).
2727
- [**Configuration**](/concepts/configuration/): webpack config file is a plain old JavaScript file that exports an object. This object is then processed by webpack based upon its defined properties.
2828

2929

0 commit comments

Comments
 (0)