-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·29 lines (28 loc) · 1011 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<!-- <link rel="icon" type="image/x-icon" href="./src/assets/deepFocus.ico" /> -->
<title>Deep Focus</title>
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="
default-src 'self';
script-src 'self';
style-src 'self' 'unsafe-inline' https://fonts.googleapis.com;
font-src 'self' https://fonts.gstatic.com;
connect-src 'self' https://backend-production-5eec.up.railway.app http://localhost:5000 https://api.frigade.com;
img-src 'self' data: https://www.google.com https://*.google.com https://*.gstatic.com https://cdn-icons-png.freepik.com;
"
/>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script defer type="module" src="src/renderer/src/App.tsx"></script>
</body>
</html>