-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1.02 KB
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en">
<head>
<!--
Content-Security-Policy is intentionally NOT here. It is injected at build
time as a <meta http-equiv="Content-Security-Policy"> tag by the
cspMetaPlugin in vite.config.ts (apply: 'build'), so it lands in
dist/index.html and dist/404.html but stays out of the dev server (where a
strict CSP would block Vite/React-Refresh HMR). The policy is omitted here
on purpose — see vite.config.ts for the full directive list.
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CPAP Analyzer</title>
<link rel="icon" type="image/svg+xml" href="%BASE_URL%favicon.svg" />
<link rel="manifest" href="%BASE_URL%manifest.webmanifest" />
<meta name="theme-color" content="#2563eb" />
<meta name="theme-color" content="#3b82f6" media="(prefers-color-scheme: dark)" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>