Remove root references. (#31)

Issues with hosting app from directory other then root "/"
This commit is contained in:
nomore1007
2022-08-17 00:11:06 -06:00
committed by GitHub
parent b6f1234235
commit b8877f8a63

View File

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