aboutsummaryrefslogtreecommitdiff
path: root/frontend/vite.config.ts
blob: 86e2da479dffd98f9d059a6561f1783f53c683d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';

export default defineConfig({
	plugins: [sveltekit()],
	server: {
		proxy: {
			'/api': 'http://localhost:8080'
		}
	}
});