Files
AIOA/admin-web/vite.config.ts
T
2026-07-18 22:25:23 +08:00

4 lines
197 B
TypeScript

import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
export default defineConfig({ plugins: [react()], test: { environment: 'jsdom' }, server: { port: 5173 } });