You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/guides/getting-started.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -163,7 +163,7 @@ There are problems with managing JavaScript projects this way:
163
163
- If a dependency is missing, or included in the wrong order, the application will not function properly.
164
164
- If a dependency is included but not used, the browser will be forced to download unnecessary code.
165
165
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.
0 commit comments