20 lines
361 B
JavaScript
20 lines
361 B
JavaScript
|
|
import { defineConfig } from "vite";
|
||
|
|
import react from "@vitejs/plugin-react";
|
||
|
|
import { TanStackRouterVite } from "@tanstack/router-plugin/vite";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
|
||
|
|
server: {
|
||
|
|
proxy: {
|
||
|
|
"/api": {
|
||
|
|
target: "http://localhost:3000/",
|
||
|
|
changeOrigin: true,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [TanStackRouterVite(), react()]
|
||
|
|
});
|
||
|
|
|
||
|
|
|
||
|
|
|