-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 1.3 KB
/
Copy pathindex.html
File metadata and controls
47 lines (43 loc) · 1.3 KB
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
<!doctype html>
<html lang="zh-CN" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:; font-src 'self' data:; connect-src 'self' http://ipc.localhost http://127.0.0.1:* ws://127.0.0.1:* http://localhost:* ws://localhost:*; child-src http: https:; frame-src http: https:;"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="dark" />
<script src="/theme-preload.js"></script>
<style>
html,
body,
#root {
min-height: 100%;
background: #0e131c;
color: #f4f7fb;
}
html {
color-scheme: dark;
}
body {
margin: 0;
}
html[data-theme="light"],
html[data-theme="light"] body,
html[data-theme="light"] #root {
background: #f6f7f8;
color: #1f2328;
}
html[data-theme="light"] {
color-scheme: light;
}
</style>
<link rel="icon" type="image/png" href="/src/assets/images/icon.png" />
<title> ShellDesk </title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>