AWS-Panel/frontend/vite.config.ts

17 lines
291 B
TypeScript
Raw Permalink Normal View History

2025-12-10 12:02:17 +08:00
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
export default defineConfig({
plugins: [vue()],
server: {
port: 5173,
proxy: {
"/api": {
target: "http://localhost:8000",
changeOrigin: true,
ws: true
}
}
}
});