From 7c47031a3c2b7dbcd3444b54733c19de9025dfe2 Mon Sep 17 00:00:00 2001 From: arpandhakal Date: Tue, 10 Feb 2026 15:04:42 +0545 Subject: [PATCH] hotfix: vercel production deployment issue --- src/config/env.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/env.ts b/src/config/env.ts index 47779f0..f72736a 100644 --- a/src/config/env.ts +++ b/src/config/env.ts @@ -17,5 +17,5 @@ const EnvSchema = z.object({ export default EnvSchema.parse({ ...process.env, - VERCEL_URL: `${['production', 'preview'].includes(process.env.VERCEL_ENV || '') ? `https://${process.env.VERCEL_URL}` : 'http://localhost:3000'}`, + VERCEL_URL: `${['production', 'preview'].includes(process.env.VERCEL_ENV || '') ? `https://${process.env.VERCEL_PROJECT_PRODUCTION_URL}` : 'http://localhost:3000'}`, })