Skip to content

Commit 4e795d0

Browse files
authored
use: relative URLs for HTML subresources (#22)
2 parents c3da22c + f9ffce5 commit 4e795d0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1919
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
2020
<!-- Use relative paths for assets. Applura will rewrite the "href" to point to the latest release on its CDN. -->
21-
<script type="module" src="/main.js"></script>
22-
<link rel="stylesheet" href="/css/main.css" />
23-
<link rel="stylesheet" href="/static/mvp.css" />
24-
<link rel="stylesheet" href="/static/global.css" />
21+
<script type="module" src="./main.js"></script>
22+
<link rel="stylesheet" href="./css/main.css" />
23+
<link rel="stylesheet" href="./static/mvp.css" />
24+
<link rel="stylesheet" href="./static/global.css" />
2525
<!-- <title> will be rewritten by the server as needed. -->
2626
<title>Starter App</title>
2727
</head>

0 commit comments

Comments
 (0)