Make JS and CSS resource paths relative
Again, this is so ChipChoc can easily be run on a subpath
This commit is contained in:
parent
393e9c2652
commit
0ed5d0158f
1 changed files with 4 additions and 4 deletions
|
@ -6,11 +6,11 @@
|
||||||
|
|
||||||
<title>ChipChoc 🍪</title>
|
<title>ChipChoc 🍪</title>
|
||||||
|
|
||||||
<link rel='icon' type='image/png' href='/favicon.png'>
|
<link rel='icon' type='image/png' href='favicon.png'>
|
||||||
<link rel='stylesheet' href='/global.css'>
|
<link rel='stylesheet' href='global.css'>
|
||||||
<link rel='stylesheet' href='/build/bundle.css'>
|
<link rel='stylesheet' href='build/bundle.css'>
|
||||||
|
|
||||||
<script defer src='/build/bundle.js'></script>
|
<script defer src='build/bundle.js'></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Reference in a new issue