mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 09:02:49 +03:00
36 lines
753 B
TypeScript
36 lines
753 B
TypeScript
import { defineConfig } from "vite";
|
|
import legacy from "@vitejs/plugin-legacy";
|
|
import react from "@vitejs/plugin-react-swc";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
legacy({
|
|
targets: ["defaults", "not IE 11"],
|
|
}),
|
|
],
|
|
server: {
|
|
host: "0.0.0.0",
|
|
port: 3000,
|
|
proxy: {
|
|
"^/api": {
|
|
target: "http://localhost:8080/",
|
|
changeOrigin: true,
|
|
},
|
|
"^/o/": {
|
|
target: "http://localhost:8080/",
|
|
changeOrigin: true,
|
|
},
|
|
"^/h/": {
|
|
target: "http://localhost:8080/",
|
|
changeOrigin: true,
|
|
},
|
|
"^/u/\\d*/rss.xml": {
|
|
target: "http://localhost:8080/",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
});
|