provapraticafrontend/vite.config.ts
AV77web 722eae8a98
Some checks failed
Deploy to VPS / build (push) Successful in 19s
Deploy to VPS / deploy (push) Failing after 2s
primo commit
2026-06-09 12:25:37 +02:00

15 lines
283 B
TypeScript

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