-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 1.04 KB
/
index.html
File metadata and controls
30 lines (29 loc) · 1.04 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="
default-src 'self' * blob: data: filesystem:;
script-src 'self' 'unsafe-inline' 'unsafe-eval' * blob: data: filesystem:;
style-src 'self' 'unsafe-inline' * blob: data: filesystem:;
img-src 'self' data: * blob: filesystem:;
font-src 'self' data: * blob: filesystem:;
connect-src 'self' * ws: wss: blob: data: filesystem:;
media-src * blob: data: filesystem:;
object-src * blob: data: filesystem:;
frame-src * blob: data: filesystem:;
worker-src 'self' * blob: data: filesystem:;
child-src 'self' * blob: data: filesystem:;
manifest-src 'self' * blob: data: filesystem:;
form-action 'self' *;
base-uri 'self' *;
">
<link rel="icon" href="/assets/favicon.ico" />
<title>D-Chat</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>