Skip to content

Commit 3719796

Browse files
authored
Fix path to bundle.js
The path to the compiled Javascript file was wrong: it tries to go up a directory when it shouldn't. Amazingly the current version still works if you host directly from the `dist` folder I guess because there is no dir to go up to? Anyway, this should make it work in all cases.
1 parent a668b28 commit 3719796

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<body>
3333
<div id="root"></div>
3434
<noscript>Please enable JavaScript to view this site.</noscript>
35-
<script src="../dist/bundle.js"></script>
35+
<script src="dist/bundle.js"></script>
3636
</body>
3737

38-
</html>
38+
</html>

0 commit comments

Comments
 (0)