mirror of
https://github.com/colanode/colanode.git
synced 2025-12-25 16:09:31 +01:00
18 lines
474 B
HTML
18 lines
474 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Colanode</title>
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
<meta
|
|
http-equiv="Content-Security-Policy"
|
|
content="default-src 'self' 'unsafe-inline' data: asset:; img-src 'self' https: avatar: local-file: local-file-preview: asset:;"
|
|
/>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/renderer.ts"></script>
|
|
</body>
|
|
</html>
|