Astro-theme-cactus防止白屏FOUC(Flash of Unstyled Content)
/ 1 min read
Updated:修改BaseHead.astro
<!-- 防止 FOUC 的内联脚本,必须放在最前面 --><script is:inline> try { const theme = localStorage.getItem("theme"); if (theme === "dark" || theme === "light") { document.documentElement.setAttribute("data-theme", theme); } else { const prefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches; document.documentElement.setAttribute("data-theme", prefersDark ? "dark" : "light"); } } catch (_) {}</script>