import { defineConfig } from "vite"; import preact from "@preact/preset-vite"; export default defineConfig({ base: "/app/", plugins: [preact()], build: { outDir: "dist", sourcemap: true, }, server: { port: 5173, proxy: { "/api": { target: "http://localhost:8080", changeOrigin: true, }, "/ws": { target: "ws://localhost:8080", ws: true, }, "^/app$": { target: "http://localhost:8080", changeOrigin: true, }, }, }, });