Skip to content

Commit bf84448

Browse files
docs: improve explanation of why webpack is used (#8197)
1 parent 939b0d8 commit bf84448

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/guides/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ There are problems with managing JavaScript projects this way:
163163
- If a dependency is missing, or included in the wrong order, the application will not function properly.
164164
- If a dependency is included but not used, the browser will be forced to download unnecessary code.
165165

166-
Let's use webpack to manage these scripts instead.
166+
Webpack solves these issues by explicitly declaring dependencies and bundling them together. This removes reliance on global variables and ensures scripts are executed in the correct order.
167167

168168
## Creating a Bundle
169169

0 commit comments

Comments
 (0)