-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 1.35 KB
/
index.html
File metadata and controls
26 lines (26 loc) · 1.35 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
25
26
<!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" />
<!-- Prevent search engines and bots from indexing this local tool -->
<meta name="robots" content="noindex, nofollow, noarchive" />
<!-- Restrict where the page can be framed -->
<!--
This meta-tag CSP applies when the frontend is served by the Vite dev
server (port 5173), which does not add HTTP headers itself. In
production the equivalent HTTP header is emitted by helmet in
server/index.js. Both are intentionally present to cover both modes.
-->
<!-- <meta http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; connect-src 'self' ws://127.0.0.1:8996 ws://127.0.0.1:8997 ws://127.0.0.1:8998 ws://127.0.0.1:8999; img-src 'self' data:; font-src 'self'; object-src 'none'; frame-src 'none'; frame-ancestors 'none';" /> -->
<!-- Limit referrer information sent to third parties -->
<meta name="referrer" content="strict-origin-when-cross-origin" />
<title>SensorGuard — Real-Time Laptop Sensor Dashboard</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>