mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 01:48:04 +08:00
12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
import react from '@vitejs/plugin-react'
|
|
import { defineConfig } from 'vite-plus'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
environment: 'happy-dom',
|
|
globals: true,
|
|
setupFiles: ['./vitest.setup.ts'],
|
|
},
|
|
})
|