LingAdmin/Web/index.html

28 lines
861 B
HTML
Raw Permalink Normal View History

2026-04-16 18:13:06 +08:00
<!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>Ling Admin</title>
<script>
(function() {
const storageKey = 'theme';
const className = 'dark';
const storageVal = localStorage.getItem(storageKey);
const systemDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (storageVal === 'dark' || (!storageVal && systemDark)) {
document.documentElement.classList.add(className);
} else {
document.documentElement.classList.remove(className);
}
})()
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>