-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (18 loc) · 1.19 KB
/
index.html
File metadata and controls
21 lines (18 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ThoughtsPlus</title>
<!-- Fonts are now bundled locally for APPX/Store compatibility -->
<!-- CSP allows local resources and APIs needed by the app -->
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob: https://cdn.jsdelivr.net https://unpkg.com; worker-src 'self' blob: https://unpkg.com; style-src 'self' 'unsafe-inline'; img-src 'self' data: https: file:; media-src 'self' https: data: blob:; font-src 'self' data:; connect-src 'self' https://*.googleapis.com https://*.openai.com https://api.perplexity.ai https://openrouter.ai https://api.github.com https://*.githubusercontent.com https://github-contributions-api.jogruber.de https://api.dictionaryapi.dev https://cdn.jsdelivr.net https://unpkg.com https://files.pythonhosted.org; frame-src 'self';">
<!-- Pyodide loaded dynamically in Nerdbook.tsx -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>