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

19 lines
443 B
TypeScript
Raw Normal View History

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-06 16:41:00 +08:00
server: {
port: 5174,
2023-03-06 21:56:04 +08:00
proxy: {
"/api": {
target: "http://172.20.160.221:7001/api",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ""),
},
},
2023-03-06 16:41:00 +08:00
},
});