2026-08-08 09:54:45 +08:00
|
|
|
import { defineConfig } from 'vitest/config'
|
2026-08-08 01:02:20 +08:00
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
|
2026-08-08 09:54:45 +08:00
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react()],
|
|
|
|
|
clearScreen: false,
|
|
|
|
|
server: { strictPort: true },
|
|
|
|
|
test: {
|
|
|
|
|
exclude: ['**/node_modules/**', '**/dist/**', '**/._*'],
|
|
|
|
|
},
|
|
|
|
|
})
|