Enabling console for staging (#10072)
parent
db27c7e4bc
commit
aa1370b9c7
|
@ -30,7 +30,9 @@ export const IS_CALCOM =
|
|||
new URL(WEBAPP_URL).hostname.endsWith("cal-staging.com"));
|
||||
|
||||
export const CONSOLE_URL =
|
||||
new URL(WEBAPP_URL).hostname.endsWith(".cal.dev") || process.env.NODE_ENV !== "production"
|
||||
new URL(WEBAPP_URL).hostname.endsWith(".cal.dev") ||
|
||||
new URL(WEBAPP_URL).hostname.endsWith(".cal-staging.com") ||
|
||||
process.env.NODE_ENV !== "production"
|
||||
? `https://console.cal.dev`
|
||||
: `https://console.cal.com`;
|
||||
export const IS_SELF_HOSTED = !(
|
||||
|
|
Loading…
Reference in New Issue