We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20272fe + 776ba4f commit bc10f02Copy full SHA for bc10f02
1 file changed
src/app/services/constants.ts
@@ -47,7 +47,8 @@ if (document.location.hostname === "localhost") {
47
export const isStaging =
48
document.location.hostname.startsWith("staging.") ||
49
document.location.hostname.startsWith("www.staging.") ||
50
- document.location.hostname === "isaac-fe-alb-test.development.isaaccomputerscience.org";
+ document.location.hostname === "isaac-fe-alb-test.development.isaaccomputerscience.org" ||
51
+ document.location.hostname === "isaac-stack-alb-test.development.isaaccomputerscience.org";
52
53
export const envSpecific = <L, S, D>(live: L, staging: S, dev: D) =>
54
isStaging ? staging : process.env.NODE_ENV === "production" ? live : dev;
0 commit comments