import { sveltekit } from '@sveltejs/kit/vite'; export default { plugins: [sveltekit()], // Dev convenience: proxy API calls to the FastAPI server. server: { proxy: { '/api': 'http://127.0.0.1:8000', '/healthz': 'http://127.0.0.1:8000' } }, };