From d83e3bb9d4fe59203d394d6e86f4eccf19af45b6 Mon Sep 17 00:00:00 2001 From: Gros Frumos Date: Tue, 17 Mar 2026 22:12:57 +0200 Subject: [PATCH] kin: auto-commit after pipeline --- web/frontend/vite.config.ts | 5 +++++ 1 file changed, 5 insertions(+) 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,