diff options
Diffstat (limited to 'hi-ui/vite.config.js')
| -rw-r--r-- | hi-ui/vite.config.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hi-ui/vite.config.js b/hi-ui/vite.config.js new file mode 100644 index 0000000..05a5a6f --- /dev/null +++ b/hi-ui/vite.config.js @@ -0,0 +1,11 @@ +import { sveltekit } from '@sveltejs/kit/vite'; +import { defineConfig } from 'vite'; + +export default defineConfig({ + plugins: [sveltekit()], + server: { + proxy: { + '/api': 'http://localhost:64209', + }, + }, +}); |
