-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 1.42 KB
/
index.html
File metadata and controls
22 lines (22 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Local-first engineering notebook" />
<meta name="theme-color" content="#f97316" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<link rel="apple-touch-icon" href="/icon-192.svg" />
<title>WorkLedger</title>
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-eval' 'wasm-unsafe-eval' 'sha256-dKRpQrkjwChkVkQN88GYc0+4VOKkyqJyz8AQ6dJPbXY=' 'sha256-NYihklUUIFNY2xWy+Lgdazjuq1X39Fkt3kOZkTFCEkE=' 'sha256-AI/lLLJw6YLyo54dYa5mnbbJgfcvxqKZ1zpgE68zBD8=' https://analytics.novanexus.ca; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; img-src 'self' data: blob:; font-src 'self' data: https://fonts.gstatic.com; connect-src 'self' https: http://localhost:* http://127.0.0.1:*; worker-src 'self' blob:;">
</head>
<body>
<script>
(function(){var t=localStorage.getItem('workledger-theme');if(t==='dark'||(!t&&matchMedia('(prefers-color-scheme:dark)').matches))document.documentElement.classList.add('dark')})();
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>