-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 908 Bytes
/
index.html
File metadata and controls
33 lines (32 loc) · 908 Bytes
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
<!doctype html>
<html lang="en" class="theme-dark">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no"
/>
<title>QUICKSILVER Configurator</title>
<meta
name="description"
content="Configurator for the QUICKSILVER flight-controller firmware"
/>
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link
rel="alternate icon"
href="/favicon.ico"
type="image/png"
sizes="16x16"
/>
<link rel="mask-icon" href="/favicon.svg" color="#FFFFFF" />
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="theme-color" content="#3c7317" />
</head>
<body>
<div id="app"></div>
<script>
window.global = globalThis;
</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>