-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (22 loc) · 826 Bytes
/
index.html
File metadata and controls
25 lines (22 loc) · 826 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, virtual-keyboard=overlays-content, interactive-widget=resizes-content">
<title>HugoGuard CMS</title>
<meta http-equiv="Content-Security-Policy"
content="default-src 'self';
script-src 'self' 'unsafe-eval';
style-src 'self' 'unsafe-inline';
img-src 'self' data: blob:;
font-src 'self';
connect-src 'self' https://api.github.com https://api.cloudflare.com https://api.netlify.com https://api.vercel.com;
base-uri 'none';
form-action 'self' https://hugoguard-cms-v2.vercel.app;
object-src 'none';">
</head>
<body class="bg-gray-900 text-gray-100">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>