Refactor site header, heroes, and design system

This commit is contained in:
MOH
2026-03-08 00:29:51 +01:00
parent a18370d003
commit 0c2b67e378
56 changed files with 2714 additions and 1318 deletions
+17
View File
@@ -0,0 +1,17 @@
import path from "path";
import { fileURLToPath } from "url";
import { defineConfig } from "vitest/config";
const rootDir = path.dirname(fileURLToPath(new URL(import.meta.url)));
export default defineConfig({
resolve: {
alias: {
"@": rootDir,
},
},
test: {
environment: "node",
},
});