Files
MediaLore-Web-App/frontend/index.html
2026-05-09 14:51:25 -04:00

21 lines
654 B
HTML

<!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>MediaLore</title>
<script>
// Apply saved theme before first paint to avoid flash
const t = localStorage.getItem("theme");
if (t === "dark" || (!t && window.matchMedia("(prefers-color-scheme: dark)").matches)) {
document.documentElement.setAttribute("data-theme", "dark");
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>