web-backset.cn/apps/web/vite.config.ts

18 lines
425 B
TypeScript
Raw Normal View History

2023-02-27 11:23:36 +08:00
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()],
2023-03-12 22:30:09 +08:00
server: {
proxy: {
"/api": {
rewrite: (path) => path.replace(/^\/api/, ""),
target: "http://127.0.0.1:7001/api/v1",
changeOrigin: true,
},
},
},
2023-02-27 11:23:36 +08:00
});