- Restored legacy Vite application folder from git history - Needed for comparing old vs new Next.js implementation - Contains original component implementations and utilities
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
setupFiles: ['./src/test/setup.ts']
|
|
}
|
|
}); |