mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-02-02 21:23:28 +08:00
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
globals: true,
|
|
environment: "jsdom",
|
|
setupFiles: "./tests/setup.ts",
|
|
},
|
|
}); |