diff --git a/pruebas/02-bazar-universal/aiv4ro/src/constants/env.ts b/pruebas/02-bazar-universal/aiv4ro/src/constants/env.ts index a0d3b3930..7d0d23587 100644 --- a/pruebas/02-bazar-universal/aiv4ro/src/constants/env.ts +++ b/pruebas/02-bazar-universal/aiv4ro/src/constants/env.ts @@ -1 +1,2 @@ -export const hostUrl = process.env.VERCEL_URL ?? 'http://localhost:3000' +const vercelUrl = process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : null +export const hostUrl = vercelUrl ?? 'http://localhost:3000'