Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
774 B · 24 lines
HTML
12345678910111213141516171819202122232425<!doctype html><html lang="en"> <head> <meta charset="UTF-8" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Streamplace</title> <script> // Sync dark/light class before first paint to avoid flash. (function () { var pref = localStorage.getItem("streamplace:theme") || "system"; var dark = pref === "dark" || (pref === "system" && matchMedia("(prefers-color-scheme: dark)").matches); if (dark) document.documentElement.classList.add("dark"); })(); </script> </head> <body> <div id="root"></div> <script type="module" src="/src/main.tsx"></script> </body></html>