-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
49 lines (49 loc) · 1.24 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
47
48
49
<!doctype html>
<html
lang="en"
class="min-h-dvh scroll-smooth [scrollbar-gutter:stable]"
data-theme="system"
>
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="/favicon-light.ico"
media="(prefers-color-scheme: light)"
/>
<link
rel="icon"
href="/favicon-dark.ico"
media="(prefers-color-scheme: dark)"
/>
<link rel="manifest" href="/manifest.json" />
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="#F8F9FC"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#121212"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PingStash</title>
<script>
window.global = window;
</script>
</head>
<body
class="min-h-dvh max-w-[100dvw] bg-background text-foreground selection:bg-foreground selection:text-background"
>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div
id="root"
class="flex min-h-dvh max-w-[100dvw] flex-col [scrollbar-gutter:stable]"
></div>
<script>
const global = globalThis;
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>