Updated default env file to be production.

This commit is contained in:
Patrick Fic
2021-01-12 21:34:33 -08:00
parent a263192ae9
commit 280b8e38b5
5 changed files with 7 additions and 23 deletions

1
env.js
View File

@@ -64,6 +64,7 @@ function getEnvVars(env = "") {
if (env.indexOf("dev") !== -1) return ENV.dev;
if (env.indexOf("staging") !== -1) return ENV.staging;
if (env.indexOf("prod") !== -1) return ENV.prod;
else return ENV.prod;
}
export default getEnvVars(Constants.manifest.releaseChannel);