Files
ai-wave-02/apps/web/vite.config.ts
T
2026-09-03 22:02:52 +09:00

13 lines
225 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
"/api": "http://localhost:3001"
}
}
});