feat: add Header with language switcher and theme toggle

Also disables Vitest file parallelism since concurrent astro builds
across test files raced on the shared dist/ output.
This commit is contained in:
2026-08-02 15:57:35 +02:00
parent 1d65bb7aa8
commit 86049dd8b5
8 changed files with 119 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
fileParallelism: false,
},
});