mirror of
https://github.com/fergalmoran/onearmy-community-platform.git
synced 2025-12-22 09:37:54 +00:00
17 lines
373 B
TypeScript
17 lines
373 B
TypeScript
import react from '@vitejs/plugin-react'
|
|
import { defineConfig } from 'vite'
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
setupFiles: './src/tests/setup.ts',
|
|
coverage: {
|
|
provider: 'c8',
|
|
reporter: ['text', 'json', 'html'],
|
|
},
|
|
},
|
|
})
|