From 3e629a1ace1f281f8e0c69f027adae4524645b5c Mon Sep 17 00:00:00 2001 From: Igor Loskutov Date: Thu, 4 Sep 2025 11:48:26 -0400 Subject: [PATCH] less edgy config (ci) --- www/app/lib/edgeConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/app/lib/edgeConfig.ts b/www/app/lib/edgeConfig.ts index 15ec9689..69925796 100644 --- a/www/app/lib/edgeConfig.ts +++ b/www/app/lib/edgeConfig.ts @@ -32,7 +32,7 @@ export function edgeDomainToKey(domain: string) { export async function getConfig() { const domain = new URL(process.env.NEXT_PUBLIC_SITE_URL!).hostname; - if (isCI) { + if (isCI || isBuildPhase) { // "noop" return require("../../config-template").localConfig; }