Skip to content

Commit 9082d2b

Browse files
authored
Merge pull request #3176 from Krishnanand2517/patch-1-1
Update part7d.md: Improve readability and fix a typo
2 parents 7d59df0 + d673d20 commit 9082d2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/7/en/part7d.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ The <i>index.html</i> file located at the root of the <i>dist</i> directory is t
4545
</html>
4646
```
4747

48-
As we can see from the example application that was created with Vite, the build script also bundles the application's CSS files into a single <i>/assets/index-d526a0c5.csss</i> file.
48+
As we can see from the example application that was created with Vite, the build script also bundles the application's CSS files into a single <i>/assets/index-d526a0c5.css</i> file.
4949

50-
In practice, bundling is done so that we define an entry point for the application, which typically is the <i>index.js</i> file. When webpack bundles the code, it includes all of the code that the entry point imports, the code that its imports import, and so on.
50+
In practice, bundling is done so that we define an entry point for the application, which typically is the <i>index.js</i> file. When webpack bundles the code, it includes not only the code from the entry point but also the code that is imported by the entry point, as well as the code imported by its import statements, and so on.
5151

5252
Since part of the imported files are packages like React, Redux, and Axios, the bundled JavaScript file will also contain the contents of each of these libraries.
5353

0 commit comments

Comments
 (0)