import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; import tsconfigPaths from "vite-tsconfig-paths"; // https://vitejs.dev/config/ export default defineConfig({ plugins: [react(), tsconfigPaths()], server: { port: 5174, proxy: { "/api": { rewrite: (path) => path.replace(/^\/api/, ""), target: "http://127.0.0.1:7001/api/v1", changeOrigin: true, }, }, }, });