summaryrefslogtreecommitdiff
path: root/client/vite.config.ts
blob: 66d0f3fa074f2f3a19c7ea596385030b4b9c2762 (plain)
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'
    }
  }
});