Skip to content

Commit 2cc4966

Browse files
authored
Merge pull request #3325 from chengd42/patch-2
Update part3b.md
2 parents 5421c38 + b5253e8 commit 2cc4966

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/3/en/part3b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ A production build of applications created with Vite can be created with the com
259259

260260
Let's run this command from the <i>root of the notes frontend project</i> that we developed in [Part 2](/en/part2).
261261

262-
This creates a directory called <i>dist</i> (which contains the only HTML file of our application, <i>index.html</i> ) which contains the directory <i>assets</i>. [Minified](<https://en.wikipedia.org/wiki/Minification_(programming)>) version of our application's JavaScript code will be generated in the <i>dist</i> directory. Even though the application code is in multiple files, all of the JavaScript will be minified into one file. All of the code from all of the application's dependencies will also be minified into this single file.
262+
This creates a directory called <i>dist</i> which contains the only HTML file of our application (<i>index.html</i>) and the directory <i>assets</i>. [Minified](<https://en.wikipedia.org/wiki/Minification_(programming)>) version of our application's JavaScript code will be generated in the <i>dist</i> directory. Even though the application code is in multiple files, all of the JavaScript will be minified into one file. All of the code from all of the application's dependencies will also be minified into this single file.
263263

264264
The minified code is not very readable. The beginning of the code looks like this:
265265

0 commit comments

Comments
 (0)