forked from neyl66/chat-spectator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 782 Bytes
/
index.html
File metadata and controls
24 lines (22 loc) · 782 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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Twitch chat spectator</title>
<!-- Load `toast` and `SvelteToast` into global scope. -->
<script src="https://cdn.jsdelivr.net/npm/@zerodevx/svelte-toast"></script>
<script>
document.addEventListener("DOMContentLoaded", () => {
new SvelteToast({
target: document.querySelector("#error-toasts"),
});
});
</script>
</head>
<body>
<div id="error-toasts"></div>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>