TraceStudio-dev/web_v2/vite.config.ts
Boshuang Zhao 5790ec164f add web v2
2026-01-10 19:08:49 +08:00

10 lines
164 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173
}
})