You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
434B

  1. function getEnv() {
  2. const e = process.env.REACT_APP_ENV;
  3. if (e === "local") return e;
  4. if (e === "staging") return e;
  5. if (e === "production") return e;
  6. return "other";
  7. }
  8. export const APP_ENV: "local" | "staging" | "production" | "other" = getEnv();
  9. // API
  10. // ----------------------------------------------------------------------
  11. export const HOST_API =
  12. process.env.REACT_APP_HOST_API_KEY || window.location.origin || "";