From 03a14b628b1e24c383630f1dee70b7680d8f948b Mon Sep 17 00:00:00 2001 From: Tiago Yamamoto Date: Mon, 22 Dec 2025 11:14:14 -0300 Subject: [PATCH] fix: seeder tables and marketplace api proxy configuration --- marketplace/vite.config.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/marketplace/vite.config.ts b/marketplace/vite.config.ts index 5a33944..bf97e06 100644 --- a/marketplace/vite.config.ts +++ b/marketplace/vite.config.ts @@ -4,4 +4,12 @@ import react from '@vitejs/plugin-react' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], + server: { + proxy: { + '/api': { + target: 'http://localhost:8214', + changeOrigin: true, + } + } + }, })