Initial commit: BiliDownloader Web 版:Python 零依赖后端 + shadcn/ui 前端

This commit is contained in:
WpyQwq
2026-09-19 11:49:36 +08:00
commit f42cf11831
41 changed files with 7576 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="zh-CN" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BiliDownloader</title>
<meta name="color-scheme" content="light dark" />
<script>
// 主题记忆(默认深色):尽早设置,避免首屏闪白
try {
const saved = localStorage.getItem('bd.theme');
const dark = saved ? saved === 'dark' : true;
document.documentElement.classList.toggle('dark', dark);
} catch (e) {}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>