forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 931 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (28 loc) · 931 Bytes
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
27
28
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/copilotkit-logo-mark.svg" />
<title>CopilotKit + LangGraph</title>
<script>
// Apply the theme class before first paint so the page doesn't flash
// white when the OS prefers dark. Mirrors the logic in ThemeProvider;
// its later useEffect is a no-op when the class is already correct.
(function () {
try {
var prefersDark = window.matchMedia(
"(prefers-color-scheme: dark)",
).matches;
document.documentElement.classList.add(
prefersDark ? "dark" : "light",
);
} catch (_) {}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>