lynxkite / web /vite.config.ts
darabos's picture
Partially hook up backend to visualization.
af53b62
raw
history blame
242 Bytes
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
server: {
proxy: { '/api': 'http://127.0.0.1:8000' },
},
})