-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (42 loc) · 1.35 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta
name="description"
content="Foodover, use your leftover products to find interesting new recipes."
/>
<meta name="theme-color" content="#764ABC" />
<link rel="manifest" href="/manifest.json" />
<link rel="shortcut icon" href="/assets/icons/icon-144x144.png" />
<link rel="apple-touch-icon" href="/assets/icons/icon-152x152.png" />
<link rel="icon" href="/favicon.ico" />
<script
script-src="https://challenges.cloudflare.com"
src="https://challenges.cloudflare.com/turnstile/v0/api.js?render=explicit"
defer
></script>
<title>Foodover</title>
<script>
if ("serviceWorker" in navigator) {
navigator.serviceWorker
.register("serviceworker.js")
.then(function (registration) {
console.log("Service worker registered successfully", registration);
})
.catch(function (err) {
console.log("Service worker registration failed: ", err);
});
}
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>