mirror of
https://github.com/cupcakearmy/formhero.git
synced 2024-12-22 16:16:24 +00:00
14 lines
269 B
JavaScript
14 lines
269 B
JavaScript
|
/// <reference types="vitest" />
|
||
|
|
||
|
import react from '@vitejs/plugin-react'
|
||
|
import { defineConfig } from 'vite'
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
test: {
|
||
|
setupFiles: ['./test/setup.ts'],
|
||
|
globals: false,
|
||
|
environment: 'happy-dom',
|
||
|
},
|
||
|
})
|