From 0bfecb8272ecccbd8785eb44cb9c4bc6d2e4791a Mon Sep 17 00:00:00 2001 From: Chi-Sheng Liu Date: Tue, 19 Mar 2024 22:25:45 +0800 Subject: [PATCH] fix(build): Fix yarn start error Resolves: flyteorg/flyte#5075 Signed-off-by: Chi-Sheng Liu --- 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 44e49a153..27aaca290 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?:\/\//, '') || ''; +const ADMIN_API_URL = process.env.ADMIN_API_URL?.replace(/https?:\/\//, '') || 'localhost:30080'; // 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 = `localhost.${ADMIN_API_URL}`; +const LOCAL_DEV_HOST = process.env.LOCAL_DEV_HOST || `localhost`; /** * @depricated use BASE_HREF