diff --git a/src/app/services/constants.ts b/src/app/services/constants.ts index e8d0445f85..d258ff8bf8 100644 --- a/src/app/services/constants.ts +++ b/src/app/services/constants.ts @@ -47,7 +47,8 @@ if (document.location.hostname === "localhost") { export const isStaging = document.location.hostname.startsWith("staging.") || document.location.hostname.startsWith("www.staging.") || - document.location.hostname === "isaac-fe-alb-test.development.isaaccomputerscience.org"; + document.location.hostname === "isaac-fe-alb-test.development.isaaccomputerscience.org" || + document.location.hostname === "isaac-stack-alb-test.development.isaaccomputerscience.org"; export const envSpecific = (live: L, staging: S, dev: D) => isStaging ? staging : process.env.NODE_ENV === "production" ? live : dev;