-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 1.38 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
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Pipelab</title>
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="
default-src 'self';
script-src 'self' 'unsafe-eval';
img-src 'self' data:;
style-src 'self' 'unsafe-inline';
style-src-elem 'self' 'unsafe-inline' https://fonts.googleapis.com;
font-src 'self' https://fonts.gstatic.com;
connect-src 'self' https://*.supabase.co;
"
/>
<link
rel="preconnect"
href="https://fonts.googleapis.com"
>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin
>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Geist+Mono:[email protected]&family=Geist:[email protected]&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<style>
html,
body,
#app {
border: none;
margin: 0;
padding: 0;
height: 100%;
}
html {
font-family: "Geist", serif;
/* font-optical-sizing: auto;
font-weight: normal;
font-style: normal;
font-variation-settings:
"wdth" 100; */
}
</style>
</head>
<body>
<div id="app"></div>
<script
type="module"
src="/src/renderer.ts"
></script>
</body>
</html>