mirror of
https://github.com/usememos/memos.git
synced 2024-12-22 02:31:46 +03:00
27 lines
577 B
TypeScript
27 lines
577 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { VitePWA } from "vite-plugin-pwa";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), VitePWA()],
|
|
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,
|
|
},
|
|
},
|
|
},
|
|
});
|