24 lines
531 B
TypeScript
24 lines
531 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import path from "node:path";
|
|
|
|
// During local dev, proxy /api to the backend so the axios baseURL ("/api") works
|
|
// the same way it does behind nginx in production.
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:5000",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
});
|