-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
17 lines (16 loc) · 891 Bytes
/
Copy pathindex.html
File metadata and controls
17 lines (16 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Lumen Browser</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self' data: blob: file: http: https: ws: wss:; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: file: http: https:; font-src 'self' data: blob: file: http: https:; media-src 'self' data: blob: file: http: https:; connect-src 'self' data: blob: file: http: https: ws: wss:; worker-src 'self' blob:; child-src 'self' data: blob: file: http: https:; frame-src 'self' data: blob: file: http: https:; object-src 'none'; base-uri 'self'; form-action 'self';"
/>
</head>
<body>
<div id="app" class="min-h-100vh"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>