Files
huskies/frontend/vite.config.ts
T

21 lines
375 B
TypeScript
Raw Normal View History

import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
// https://vite.dev/config/
export default defineConfig(() => ({
2026-02-16 18:57:39 +00:00
plugins: [react()],
server: {
port: 5173,
2026-02-16 18:57:39 +00:00
proxy: {
2026-02-19 14:45:57 +00:00
"/api": {
target: "http://127.0.0.1:3001",
timeout: 120000,
},
2026-02-16 18:57:39 +00:00
},
},
build: {
outDir: "dist",
emptyOutDir: true,
},
}));