Files

12 lines
251 B
TypeScript
Raw Permalink Normal View History

2026-05-19 21:09:56 +08:00
import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
test: {
globals: true,
environment: 'jsdom',
setupFiles: ['./src/__tests__/setup.ts'],
},
});