1 2 3 4 5 6 7 8 9 10 11 12
import devtoolsJson from 'vite-plugin-devtools-json'; import { sveltekit } from '@sveltejs/kit/vite'; import { defineConfig } from 'vite'; export default defineConfig({ plugins: [sveltekit(), devtoolsJson()], server: { proxy: { '/api': 'http://127.0.0.1:8000' } } });