import { defineConfig } from 'vitest/config' import react from '@vitejs/plugin-react' // Separate vitest config that omits the TanStack Router plugin // (routes directory doesn't exist until Phase 4) export default defineConfig({ plugins: [react()], test: { environment: 'jsdom', setupFiles: ['./src/test-setup.ts'], globals: true, }, })