27 lines
955 B
HTML
27 lines
955 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
|
<meta name="theme-color" content="#3880ff" />
|
|
<meta name="description" content="Verwalte deine Spielebibliothek und entdecke neue Spiele" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
<meta name="apple-mobile-web-app-title" content="WhatToPlay" />
|
|
<link rel="manifest" href="/whattoplay/manifest.json" />
|
|
<title>WhatToPlay</title>
|
|
<script>
|
|
// Restore path from 404 redirect
|
|
const redirectPath = sessionStorage.getItem("redirectPath");
|
|
if (redirectPath) {
|
|
sessionStorage.removeItem("redirectPath");
|
|
history.replaceState(null, "", redirectPath);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|