17 lines
356 B
TypeScript
17 lines
356 B
TypeScript
|
import { defineConfig } from "vite";
|
||
|
import react from "@vitejs/plugin-react-swc";
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
server: {
|
||
|
proxy: {
|
||
|
"/api": {
|
||
|
auth: "root:hellosu",
|
||
|
target: "http://localhost:4000",
|
||
|
changeOrigin: true,
|
||
|
rewrite: (path) => path.replace(/^\/api/, ""),
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
});
|