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
parent
commit
b8877f8a63
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      index.html

6
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>

Loading…
Cancel
Save