TraceStudio-dev/web_v2/vite.config.ts

10 lines
164 B
TypeScript
Raw Normal View History

2026-01-10 19:08:49 +08:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173
}
})