vitest.config.ts 209 B

12345678910
  1. import react from '@vitejs/plugin-react';
  2. import { defineConfig } from 'vitest/config';
  3. export default defineConfig({
  4. plugins: [react()],
  5. test: {
  6. environment: 'happy-dom',
  7. globals: true,
  8. },
  9. });