memos/web/vite.config.ts
2022-05-21 12:33:18 +08:00

21 lines
408 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
cors: true,
proxy: {
"/api": {
target: "http://localhost:8080/",
changeOrigin: true,
},
"/h/": {
target: "http://localhost:8080/",
changeOrigin: true,
},
},
},
});