-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
45 lines (45 loc) · 1.05 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="Content-Security-Policy" content="
script-src
'self'
https://widget.mixcloud.com
https://w.soundcloud.com
;
connect-src
'self'
https://identitytoolkit.googleapis.com
https://firestore.googleapis.com
https://securetoken.googleapis.com
https://www.nts.live
;
media-src
'self'
https://stream-relay-geo.ntslive.net
;
style-src
'self'
'unsafe-inline'
;
img-src
'self'
https://media2.ntslive.co.uk
https://raw.githubusercontent.com
;
" />
<title>NTS</title>
<style>
body {
background: black;
}
</style>
<script async type="application/javascript" src="https://widget.mixcloud.com/media/js/widgetApi.js"></script>
<script async type="application/javascript" src="https://w.soundcloud.com/player/api.js"></script>
<script async type="module" src="./client/main.tsx"></script>
</head>
<body>
<main id="root"></main>
</body>
</html>