Skip to content

Commit

Permalink
docs(glossary): try to clarify the relationship between chunks and bu…
Browse files Browse the repository at this point in the history
…ndles

Resolves #970
  • Loading branch information
skipjack committed Jun 24, 2017
1 parent 9f6bfcf commit 24a1598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ This index lists common terms used throughout the webpack ecosystem.

## C

- **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.
- [**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.
- **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).
- [**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.


Expand Down

0 comments on commit 24a1598

Please sign in to comment.