d8db05e9c9
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
16 lines
264 B
TypeScript
16 lines
264 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5175,
|
|
proxy: {
|
|
"/api": "http://localhost:4200",
|
|
},
|
|
},
|
|
build: {
|
|
outDir: "dist",
|
|
},
|
|
});
|