From e64c5e0d1a35717fb1189057c54ce1144297c92b Mon Sep 17 00:00:00 2001 From: Jason Porter Date: Thu, 18 Apr 2024 17:21:42 -0700 Subject: [PATCH] Reverting #853 Signed-off-by: Jason Porter --- website/console/env/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/console/env/index.ts b/website/console/env/index.ts index d18276e09..44e49a153 100644 --- a/website/console/env/index.ts +++ b/website/console/env/index.ts @@ -31,13 +31,13 @@ const CERTIFICATE_PATH = '../../scripts/certificate'; const ADMIN_API_USE_SSL = process.env.ADMIN_API_USE_SSL || 'http'; // Admin domain used as base for window URL and API urls -const ADMIN_API_URL = process.env.ADMIN_API_URL?.replace(/https?:\/\//, '') || 'localhost:30080'; +const ADMIN_API_URL = process.env.ADMIN_API_URL?.replace(/https?:\/\//, '') || ''; // If this is unset, API calls will default to the same host used to serve this app const ADMIN_API = ADMIN_API_URL ? `//${ADMIN_API_URL}` : ''; // Webpage for local development -const LOCAL_DEV_HOST = process.env.LOCAL_DEV_HOST || 'localhost'; +const LOCAL_DEV_HOST = `localhost.${ADMIN_API_URL}`; /** * @depricated use BASE_HREF