EvalAI / vite.config.ts
anushkap01patidar
full code
d122c3c
raw
history blame contribute delete
319 Bytes
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vite.dev/config/
export default defineConfig({
plugins: [svelte()],
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:5000',
changeOrigin: true,
}
}
}
})