-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 881 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Multiplikation</title>
<link rel="icon" type="image/x-icon" href="./favicon.ico" />
<link rel="stylesheet" href="./style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script defer>
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("./service-worker.js", { scope: "./" })
}
</script>
<script type="module" src="./ext/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"hyperapp": "./ext/hyperapp.js",
"@hyperapp/html": "./ext/hyperapp-html.js",
"app/": "./app/",
"lib/": "./lib/"
}
}
</script>
<script type="module" src="./run.js"></script>
</head>
<body>
<x- id="app"></x->
</body>
</html>