Skip to content

Commit c407056

Browse files
authored
Merge pull request #341 from varunjayaraman/patch-1
Getting Started Clarifications
2 parents e9e77c2 + 5db78bb commit c407056

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

content/get-started/index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Get Started with Webpack
33
contributors:
44
- bebraw
5+
- varunjayaraman
56
sort: 3
67
---
78

@@ -50,9 +51,9 @@ __index.html__
5051
<head>
5152
<title>Webpack demo</title>
5253
<script src='https://unpkg.com/[email protected]' type='text/javascript'></script>
53-
<script src='index.js' type='text/javascript'></script>
5454
</head>
5555
<body>
56+
<script src='app/index.js' type='text/javascript'></script>
5657
</body>
5758
</html>
5859
```
@@ -83,7 +84,7 @@ Also we will need to change the `index.html` to expect a single bundled js file.
8384
<head>
8485
<title>Webpack demo</title>
8586
- <script src='https://unpkg.com/[email protected]' type='text/javascript'></script>
86-
- <script src='index.js' type='text/javascript'></script>
87+
- <script src='app/index.js' type='text/javascript'></script>
8788
+ <script src='dist/bundle.js' type='text/javascript'></script>
8889
</head>
8990
<body>

0 commit comments

Comments
 (0)