From 7c4bc52f6aa301aafbd9251486374406bfe3b944 Mon Sep 17 00:00:00 2001 From: Nevo David Date: Tue, 4 Jun 2024 13:25:04 +0700 Subject: [PATCH] feat: frontend url --- apps/frontend/next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/frontend/next.config.js b/apps/frontend/next.config.js index 34610438..e77c7789 100644 --- a/apps/frontend/next.config.js +++ b/apps/frontend/next.config.js @@ -23,6 +23,7 @@ const nextConfig = { env: { isBillingEnabled: String(!!process.env.STRIPE_PUBLISHABLE_KEY), isGeneral: String(!!process.env.IS_GENERAL), + frontendUrl: String(process.env.FRONTEND_URL), }, };