15 lines
309 B
TypeScript
15 lines
309 B
TypeScript
/// <reference types="vitest/config" />
|
|
import react from '@vitejs/plugin-react';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
base: './',
|
|
plugins: [react()],
|
|
test: {
|
|
environment: 'jsdom',
|
|
setupFiles: './src/test/setup.ts',
|
|
css: true,
|
|
restoreMocks: true,
|
|
},
|
|
});
|