feat: implement dark/light mode toggle across dashboard and profile

This commit is contained in:
bipproduction
2026-02-09 11:24:34 +08:00
parent 5ed9637a88
commit df707fe29b
12 changed files with 167 additions and 140 deletions

View File

@@ -171,8 +171,8 @@ if (!isProduction) {
const file = Bun.file(filePath);
return new Response(file, {
headers: {
"Vary": "Accept-Encoding",
}
Vary: "Accept-Encoding",
},
});
}
@@ -181,8 +181,8 @@ if (!isProduction) {
if (fs.existsSync(indexHtml)) {
return new Response(Bun.file(indexHtml), {
headers: {
"Vary": "Accept-Encoding",
}
Vary: "Accept-Encoding",
},
});
}