import react from "@vitejs/plugin-react"; import { defineConfig } from "vite"; const target = process.env.MBOT_API ?? "http://127.0.0.1:3005"; export default defineConfig({ plugins: [react()], server: { port: 5180, proxy: { "/api": { target, changeOrigin: true }, "/ws": { target, ws: true }, }, }, build: { outDir: "dist", emptyOutDir: true }, });