mirror of
https://github.com/RaisFast/raisfast.git
synced 2026-09-24 16:02:44 +00:00
24 lines
859 B
HTML
24 lines
859 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="production">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>RaisFast Admin</title>
|
|
<script>
|
|
// 防止主题闪烁
|
|
(function () {
|
|
const t = localStorage.getItem("theme-storage");
|
|
const v = t ? JSON.parse(t).state?.theme : null;
|
|
const d = v === "dark" || (!v && window.matchMedia("(prefers-color-scheme: dark)").matches);
|
|
document.documentElement.classList.toggle("dark", d);
|
|
})();
|
|
</script>
|
|
<script type="module" crossorigin src="/admin/assets/index-BP76xrDo.js"></script>
|
|
<link rel="stylesheet" crossorigin href="/admin/assets/index-MnW6xQVX.css">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|