Files
hlae-site/web/index.html
purp1e 35d835f68c chore: 统一代码格式并配置开发工具
- 添加 ESLint 和 Prettier 配置以统一代码风格
- 配置项目级 TypeScript 设置
- 更新前后端依赖版本
- 修复代码格式问题(引号、分号、尾随逗号等)
- 优化文件结构和导入路径
2026-03-10 18:24:19 +08:00

18 lines
505 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HLAE中文站</title>
<script>
const theme = localStorage.getItem('theme') || 'light'
document.documentElement.classList.add(theme)
document.documentElement.setAttribute('data-theme', theme)
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/root.tsx"></script>
</body>
</html>