Skip to content

Commit 3db4d3c

Browse files
committed
Use double quotes in html for consistency
1 parent f300963 commit 3db4d3c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/get-started/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ __index.html__
5050
<html>
5151
<head>
5252
<title>Webpack demo</title>
53-
<script src='https://unpkg.com/[email protected]' type='text/javascript'></script>
53+
<script src="https://unpkg.com/[email protected]" type="text/javascript"></script>
5454
</head>
5555
<body>
56-
<script src='app/index.js' type='text/javascript'></script>
56+
<script src="app/index.js" type="text/javascript"></script>
5757
</body>
5858
</html>
5959
```
@@ -83,12 +83,12 @@ Also we will need to change the `index.html` to expect a single bundled js file.
8383
<html>
8484
<head>
8585
<title>Webpack demo</title>
86-
- <script src='https://unpkg.com/[email protected]' type='text/javascript'></script>
87-
- <script src='app/index.js' type='text/javascript'></script>
88-
+ <script src='dist/bundle.js' type='text/javascript'></script>
86+
- <script src="https://unpkg.com/[email protected]" type="text/javascript"></script>
87+
- <script src="app/index.js" type="text/javascript"></script>
88+
+ <script src="dist/bundle.js" type="text/javascript"></script>
8989
</head>
9090
<body>
91-
<div id='root'></div>
91+
<div id="root"></div>
9292
</body>
9393
</html>
9494
```

0 commit comments

Comments
 (0)