Files
agent/apps/web_v1/vite.config.ts

12 lines
216 B
TypeScript
Raw Normal View History

2026-07-20 09:50:55 +08:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
2026-07-22 23:27:02 +08:00
server: {
port: 5173,
strictPort: true,
},
2026-07-20 09:50:55 +08:00
})