2024-01-19 11:46:17 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
2024-11-19 13:32:06 +00:00
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/svg+xml"
|
|
|
|
href="/favicon.ico"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="apple-touch-icon"
|
|
|
|
href="/logo192.png"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="manifest"
|
|
|
|
href="/manifest.json"
|
|
|
|
/>
|
|
|
|
<meta
|
|
|
|
name="theme-color"
|
|
|
|
content="#000000"
|
|
|
|
/>
|
|
|
|
<meta
|
|
|
|
name="viewport"
|
|
|
|
content="width=device-width, initial-scale=1.0"
|
|
|
|
/>
|
|
|
|
<meta
|
|
|
|
http-equiv="Pragma"
|
|
|
|
content="no-cache"
|
|
|
|
/>
|
2024-01-24 23:52:35 +00:00
|
|
|
<title>Quiz</title>
|
2024-11-19 13:32:06 +00:00
|
|
|
<script>
|
|
|
|
let params = new URLSearchParams(document.location.search);
|
|
|
|
if (params.get("debug")) {
|
|
|
|
let scriptTag = document.createElement("script");
|
|
|
|
scriptTag.setAttribute("src", "https://markknol.github.io/console-log-viewer/console-log-viewer.js");
|
|
|
|
scriptTag.setAttribute("async", "");
|
|
|
|
document.getElementsByTagName("head")[0].append(scriptTag);
|
|
|
|
}
|
|
|
|
</script>
|
2024-01-19 11:46:17 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="root"></div>
|
2024-11-19 13:32:06 +00:00
|
|
|
<script
|
|
|
|
type="module"
|
|
|
|
src="/src/main.tsx"
|
|
|
|
></script>
|
2024-01-19 11:46:17 +00:00
|
|
|
</body>
|
|
|
|
</html>
|