Files
omnex/web/vite.config.ts
T
Xor290 43b2e322ce
ci-web / test (push) Successful in 15m0s
chore: build
2026-08-19 13:05:47 +02:00

12 lines
233 B
TypeScript

/// <reference types="vitest/config" />
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
test: {
globals: true,
environment: 'jsdom',
},
})