Files
skooner/client/public/index.html
2021-05-01 14:15:33 -07:00

37 lines
1.2 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<script>
let basePath = window.location.pathname;
if (!basePath.endsWith('/')) basePath += '/';
document.write(`<base href="${basePath}">`);
</script>
<meta charset="utf-8" />
<link rel="shortcut icon" href="./favicon.ico" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#326ce5" />
<link rel="manifest" href="./manifest.json" />
<link rel="apple-touch-icon" sizes="512x512 192x192 144x144 64x64 32x32 24x24 16x16" href="./logo.png">
<link rel="apple-touch-startup-image" href="./logo.png">
<title>Skooner</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>