import { defineConfig } from "vite"; import { svelte } from "@sveltejs/vite-plugin-svelte"; export default defineConfig({ plugins: [svelte()], server: { port: 5173, proxy: { "/api": "http://localhost:8765", "/games": "http://localhost:8765", "/artwork": "http://localhost:8765", }, }, build: { outDir: "dist", emptyOutDir: true, }, });