-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1000 Bytes
/
index.html
File metadata and controls
35 lines (33 loc) · 1000 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
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>클라톡 채팅</title>
<meta
http-equiv="Content-Security-Policy"
content="
default-src 'self';
script-src 'self' https://vercel.live;
font-src 'self' https://fonts.gstatic.com;
style-src 'self' 'unsafe-inline' https://fonts.googleapis.com;
img-src 'self' data:;
connect-src 'self' http://localhost:4000 ws://localhost:4000
https://api.clasome.com wss://api.clasome.com
https://tops-conversely-cod.ngrok-free.app
wss://tops-conversely-cod.ngrok-free.app;"
/>
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: "Black Han Sans", sans-serif;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>