-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 772 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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>Voltius</title>
<script>
// uplot uses Intl.NumberFormat(navigator.language) at module load time.
// On Linux with LANG=C, navigator.language returns "C" which is invalid.
try { new Intl.NumberFormat(navigator.language); } catch (_) {
Object.defineProperty(navigator, "language", { value: "en-US", configurable: true });
}
</script>
</head>
<body class="bg-surface-0 text-text-primary overflow-hidden">
<div id="root"></div>
<script type="module" src="/src/app/main.tsx"></script>
</body>
</html>