-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
34 lines (32 loc) · 1.28 KB
/
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
30
31
32
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="icon" href="%PUBLIC_URL%/icon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/apple-touch-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="%VITE_APP_TITLE_SHORT%" />
<meta http-equiv="Content-Security-Policy"
content="
script-src 'self';
form-action 'self';
upgrade-insecure-requests;
style-src 'self' 'unsafe-inline';
img-src 'self' data: https://api.data.amsterdam.nl;
">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<base href="/">
<title>%VITE_APP_TITLE_SHORT%</title>
<script src='/config/env.js'></script>
<script type="module" src="src/index"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
<p id="chunk-js-loading-failure" style="display:none;">Het lijkt erop dat onderdelen van deze website niet correct kunnen worden geladen. <a href="">Probeer te herladen</a></p>
</div>
<script src=%PUBLIC_URL%/load.js></script>
</body>
</html>