Spaces:
Paused
Paused
| import { defineConfig } from 'vitest/config' | |
| import react from '@vitejs/plugin-react' | |
| import path from 'path' | |
| export default defineConfig({ | |
| plugins: [react()], | |
| resolve: { | |
| alias: { | |
| '@': path.resolve(__dirname, './src'), | |
| }, | |
| }, | |
| test: { | |
| globals: true, | |
| environment: 'jsdom', | |
| setupFiles: './src/test/setup.ts', | |
| }, | |
| }) | |