mirror of
https://github.com/streamwall/streamwall.git
synced 2025-12-06 01:45:37 -05:00
15 lines
321 B
HTML
15 lines
321 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Streamwall Control</title>
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="default-src 'self'; style-src 'self' 'unsafe-inline'"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<script src="src/index.tsx" type="module"></script>
|
|
</body>
|
|
</html>
|