Skip to content

Commit

Permalink
Update environment.ts
Browse files Browse the repository at this point in the history
add check for `development3`
  • Loading branch information
mrose17 committed Jul 17, 2023
1 parent 363f236 commit 80d81dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/environment.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export const env = process.env.ENVIRONMENT ?? "local";
export const isDevelopment = env === "development" || env === "development2";
export const isDevelopment =
env === "development" || env === "development2" || env === "development3";
export const config = {
vpaas: isDevelopment
? "vpaas-magic-cookie-cd4131ef77674a71b73411408226e232"
Expand Down

0 comments on commit 80d81dd

Please sign in to comment.