summaryrefslogtreecommitdiff
path: root/vite.config.js
blob: 3229f338cb59fcf609476e675ca1c99afa16cab1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';

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