Skip to content

Commit 2b0dcc1

Browse files
authored
Change index.js file path (again)
Since the example seems to continue assuming that `index.html` lives in the root folder, I modified the edit frmo the last commit to instead change how `index.html` accesses `index.js`
1 parent 8659f8c commit 2b0dcc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/get-started/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ document.body.appendChild(component());
4444

4545
To run this piece of code, one usually has the below html
4646

47-
__app/index.html__
47+
__index.html__
4848

4949
```html
5050
<html>
@@ -53,7 +53,7 @@ __app/index.html__
5353
<script src='https://unpkg.com/[email protected]' type='text/javascript'></script>
5454
</head>
5555
<body>
56-
<script src='index.js' type='text/javascript'></script>
56+
<script src='app/index.js' type='text/javascript'></script>
5757
</body>
5858
</html>
5959
```

0 commit comments

Comments
 (0)