From 432acd8f7fc8a192beeabe0fa47e16fe991450d3 Mon Sep 17 00:00:00 2001 From: einaralex Date: Tue, 30 Jul 2024 13:03:05 +0000 Subject: [PATCH] chore: pass on envs --- apps/customer/next.config.mjs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/customer/next.config.mjs b/apps/customer/next.config.mjs index 13a34797..b62777e1 100644 --- a/apps/customer/next.config.mjs +++ b/apps/customer/next.config.mjs @@ -11,6 +11,11 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url)); const isStandalone = process.env.STANDALONE === 'true'; const nextConfig = { + env: { + DEPLOY_PRIME_URL: process.env.DEPLOY_PRIME_URL, + DEPLOY_URL: process.env.DEPLOY_URL, + URL: process.env.URL, + }, sassOptions: { includePaths: [path.join(__dirname, 'styles')], },