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, + } + } + }, })