Files
colanode/apps/desktop/index.html
2025-01-06 16:00:20 +01:00

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>