feat: add ShieldAI theme system with auto-shifting CSS and useTheme hook

This commit is contained in:
2026-05-25 12:42:26 -04:00
parent f627033665
commit 06bf9ac97c
6 changed files with 1116 additions and 4 deletions

13
web/vitest.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from "vitest/config";
import { resolve } from "path";
export default defineConfig({
test: {
environment: "jsdom",
},
resolve: {
alias: {
"~": resolve(__dirname, "./src"),
},
},
});