2023-02-10 17:46:17 +08:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
2023-02-10 17:44:15 +08:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2023-02-10 17:46:17 +08:00
|
|
|
plugins: [react(), tsconfigPaths()],
|
2023-03-06 16:41:00 +08:00
|
|
|
server: {
|
|
|
|
port: 5174,
|
2023-03-06 21:56:04 +08:00
|
|
|
proxy: {
|
|
|
|
"/api": {
|
2023-03-07 17:44:18 +08:00
|
|
|
target: "http://127.0.0.1:7001/api",
|
2023-03-06 21:56:04 +08:00
|
|
|
changeOrigin: true,
|
|
|
|
rewrite: (path) => path.replace(/^\/api/, ""),
|
|
|
|
},
|
|
|
|
},
|
2023-03-06 16:41:00 +08:00
|
|
|
},
|
2023-02-10 17:46:17 +08:00
|
|
|
});
|