mirror of
https://github.com/usememos/memos.git
synced 2024-11-13 10:19:49 +08:00
21 lines
463 B
TypeScript
21 lines
463 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/",
|
|
target: "https://memos.justsven.top/",
|
|
changeOrigin: true,
|
|
},
|
|
"/r/": {
|
|
target: "https://memos.justsven.top/",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
});
|