21 lines
774 B
HTML
21 lines
774 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<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>DevFlow</title>
|
|
</head>
|
|
<body style="background:#0c0e1a">
|
|
<script>
|
|
// 在渲染前设置主题,防止白屏闪烁
|
|
var t = localStorage.getItem('df-theme') || 'dark';
|
|
if (t === 'light') document.documentElement.setAttribute('data-theme', 'light');
|
|
else if (t === 'system' && !window.matchMedia('(prefers-color-scheme: dark)').matches)
|
|
document.documentElement.setAttribute('data-theme', 'light');
|
|
</script>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|