From 2951c609ec73dec7cf7fc6e516fc2f3d4fba4992 Mon Sep 17 00:00:00 2001 From: Arpit Mohan Date: Fri, 11 Dec 2020 13:10:55 +0530 Subject: [PATCH] Correcting the APP_HOST in netlify for deploy previews --- app/client/netlify.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/client/netlify.toml b/app/client/netlify.toml index d90d1e5924..435adaafc5 100644 --- a/app/client/netlify.toml +++ b/app/client/netlify.toml @@ -34,20 +34,20 @@ [context.release.environment] REACT_APP_ENVIRONMENT = "STAGING" REACT_APP_SENTRY_ENVIRONMENT = "Staging" - REACT_APP_BASE_URL = "https://release-api.appsmith.com" + REACT_APP_BASE_URL = "https://release.app.appsmith.com" APP_HOST = "release.app.appsmith.com" [context.deploy-preview] [context.deploy-preview.environment] REACT_APP_ENVIRONMENT = "STAGING" REACT_APP_SENTRY_ENVIRONMENT = "Development" - REACT_APP_BASE_URL = "https://release-api.appsmith.com" + REACT_APP_BASE_URL = "https://release.app.appsmith.com" # Not adding an APP_HOST here because the URL is dynamic in nature and cannot be determined. [context.develop] [context.develop.environment] REACT_APP_ENVIRONMENT = "STAGING" - REACT_APP_BASE_URL = "https://release-api.appsmith.com" + REACT_APP_BASE_URL = "https://release.app.appsmith.com" APP_HOST = "develop.app.appsmith.com" [[headers]]