File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 2
2
title : Get Started with Webpack
3
3
contributors :
4
4
- bebraw
5
+ - varunjayaraman
5
6
sort : 3
6
7
---
7
8
@@ -50,9 +51,9 @@ __index.html__
50
51
<head >
51
52
<title >Webpack demo</title >
52
53
<
script src =
' https://unpkg.com/[email protected] ' type =
' text/javascript' ></
script >
53
- <script src =' index.js' type =' text/javascript' ></script >
54
54
</head >
55
55
<body >
56
+ <script src =' app/index.js' type =' text/javascript' ></script >
56
57
</body >
57
58
</html >
58
59
```
@@ -83,7 +84,7 @@ Also we will need to change the `index.html` to expect a single bundled js file.
83
84
<head>
84
85
<title>Webpack demo</title>
85
86
- <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>
87
88
+ <script src='dist/bundle.js' type='text/javascript'></script>
88
89
</head>
89
90
<body>
You can’t perform that action at this time.
0 commit comments