memos/web/vite.config.ts

18 lines
364 B
TypeScript
Raw Normal View History

2021-12-08 18:43:52 +03:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
cors: true,
proxy: {
"/api": {
2021-12-09 16:45:48 +03:00
target: "http://localhost:8080/",
// target: "https://memos.justsven.top/",
2021-12-08 18:43:52 +03:00
changeOrigin: true,
},
},
},
});