Files
landing/vitest.config.ts
T
anthony 86049dd8b5 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.
2026-08-02 15:57:35 +02:00

8 lines
124 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
fileParallelism: false,
},
});