Browse Source
Remove root references. (#31)
Issues with hosting app from directory other then root "/"
pull/32/head
nomore1007
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
index.html
|
|
|
@ -4,8 +4,8 @@ |
|
|
|
<meta charset="utf-8" /> |
|
|
|
<link rel="icon" type="image/svg+xml" href="/icon.svg" /> |
|
|
|
|
|
|
|
<link rel="manifest" href="/site.webmanifest" /> |
|
|
|
<link rel="mask-icon" href="/Logo_Black.svg" color="#67ea94" /> |
|
|
|
<link rel="manifest" href="site.webmanifest" /> |
|
|
|
<link rel="mask-icon" href="Logo_Black.svg" color="#67ea94" /> |
|
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" /> |
|
|
|
<link |
|
|
|
rel="stylesheet" |
|
|
|
@ -26,6 +26,6 @@ |
|
|
|
<body> |
|
|
|
<div id="root"></div> |
|
|
|
<noscript>You need to enable JavaScript to run this app.</noscript> |
|
|
|
<script type="module" src="/src/index.tsx"></script> |
|
|
|
<script type="module" src="src/index.tsx"></script> |
|
|
|
</body> |
|
|
|
</html> |
|
|
|
|