import { sveltekit } from "@sveltejs/kit/vite"; import tailwindcss from "@tailwindcss/vite"; import { defineConfig } from "vite"; export default defineConfig({ plugins: [tailwindcss(), sveltekit()], server: { port: 6827, proxy: { "/api/v1/rpc": { target: "http://localhost:9861", changeOrigin: true, }, }, }, });