diff --git a/features/marketplace/frontend-public/vite.config.ts b/features/marketplace/frontend-public/vite.config.ts index e57f8d92c..5a7dbf5c0 100755 --- a/features/marketplace/frontend-public/vite.config.ts +++ b/features/marketplace/frontend-public/vite.config.ts @@ -66,4 +66,20 @@ export default defineConfig({ __SSO_URL__: JSON.stringify(process.env.VITE_SSO_URL || 'http://localhost:4001'), __MARKETING_URL__: JSON.stringify(process.env.VITE_MARKETING_URL || 'http://localhost:5100'), }, + server: { + proxy: { + '/api': { + target: 'http://localhost:3001', + changeOrigin: true, + }, + '/auth': { + target: 'http://localhost:3001', + changeOrigin: true, + }, + '/duos': { + target: 'http://localhost:3001', + changeOrigin: true, + }, + }, + }, });