writeOff/frontend/vite.config.ts
haomingming 815aa04fe8 first
2026-05-20 18:21:39 +08:00

22 lines
407 B
TypeScript

import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
export default defineConfig({
plugins: [vue()],
server: {
host: "0.0.0.0",
port: 5173,
proxy: {
"/api": {
target: "http://localhost:8080",
changeOrigin: true,
},
"/ws": {
target: "ws://localhost:8080",
ws: true,
changeOrigin: true,
},
},
},
});