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.
|
- function getEnv() {
- const e = process.env.REACT_APP_ENV;
- if (e === "local") return e;
- if (e === "staging") return e;
- if (e === "production") return e;
- return "other";
- }
-
- export const APP_ENV: "local" | "staging" | "production" | "other" = getEnv();
- // API
- // ----------------------------------------------------------------------
- export const HOST_API =
- process.env.REACT_APP_HOST_API_KEY || window.location.origin || "";
|