Skip to content

Commit 6aee38f

Browse files
authored
Removed tip and corrected pluruals
1 parent b5f6906 commit 6aee38f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

content/guides/code-splitting.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ contributors:
66
- pastelsky
77
---
88

9-
Code splitting is one of the most compelling feature of webpack. It allows you to split your code into various bundles which you can then load on demand — like when a user navigates to a matching route, or on an event from the user. This allows for smaller bundles, and allows you to control resource load prioritization, which if used correctly, can have a major impact on your application load time.
9+
Code splitting is one of the most compelling features of webpack. It allows you to split your code into various bundles which you can then load on demand — like when a user navigates to a matching route, or on an event from the user. This allows for smaller bundles, and allows you to control resource load prioritization, which if used correctly, can have a major impact on your application load time.
1010

1111
There are mainly two kinds of code splitting that can be accomplished with webpack:
1212

@@ -20,8 +20,6 @@ If we keep code from these libraries onto its own bundle, separate from the appl
2020

2121
For this to work, the `hash` portion in the vendor filename must remain constant, regardless of application code changes. Learn [how to split vendor/library](/guides/code-splitting-libraries) code using the CommonsChunkPlugin.
2222

23-
T> Setting far cache expiry headers on your hashed resources allows browser to cache them for a longer time, reducing the need for re-downloading these resources by end users.
24-
2523
### CSS splitting
2624

2725
You might also want to split your styles into a separate bundle, independent from application logic.

0 commit comments

Comments
 (0)