Skip to content

Commit a5d441c

Browse files
committed
Fix indentation
1 parent 82ddd16 commit a5d441c

File tree

1 file changed

+15
-15
lines changed
  • examples/common-chunk-and-vendor-chunk

1 file changed

+15
-15
lines changed

examples/common-chunk-and-vendor-chunk/README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@ This example shows how to create an explicit vendor chunk as well as a common ch
33
To better understand, here are the entry points and which utility modules they depend on:
44

55
- `pageA`
6-
- `utility1`
7-
- `utility2`
6+
- `utility1`
7+
- `utility2`
88
- `pageB`
9-
- `utility2`
10-
- `utility3`
9+
- `utility2`
10+
- `utility3`
1111
- `pageC`
12-
- `utility2`
13-
- `utility3`
12+
- `utility2`
13+
- `utility3`
1414

1515
Given this configuration, webpack will produce the following bundles:
1616

1717
- `vendor`
18-
- webpack runtime
19-
- `vendor1`
20-
- `vendor2`
18+
- webpack runtime
19+
- `vendor1`
20+
- `vendor2`
2121
- `common`
22-
- `utility2`
23-
- `utility3`
22+
- `utility2`
23+
- `utility3`
2424
- `pageA`
25-
- `pageA`
26-
- `utility1`
25+
- `pageA`
26+
- `utility1`
2727
- `pageB`
28-
- `pageB`
28+
- `pageB`
2929
- `pageC`
30-
- `pageC`
30+
- `pageC`
3131

3232
With this bundle configuration, you would load your third party libraries, then your common application code, then your page-specific application code.
3333

0 commit comments

Comments
 (0)