diff --git a/web/frontend/vite.config.ts b/web/frontend/vite.config.ts index 67c2dc0..abcdfd5 100644 --- a/web/frontend/vite.config.ts +++ b/web/frontend/vite.config.ts @@ -4,6 +4,11 @@ import vue from '@vitejs/plugin-vue' // https://vite.dev/config/ export default defineConfig({ plugins: [vue()], + server: { + proxy: { + '/api': 'http://localhost:8000', + }, + }, test: { environment: 'jsdom', globals: true,