Last active
August 7, 2017 09:43
-
-
Save Thunderbird7/f656c4df5aa1ea1da5ba71eac8afc766 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NativeModules } from 'react-native' | |
import Config from 'config.json' | |
const environment = NativeModules.RNConfig.buildEnvironment | |
const getAPIURL = () => { | |
console.log('Current ENV: ', environment) | |
return Config[environment].apiURL | |
} | |
export default { | |
baseURL: getAPIURL(), | |
imageURL: getAPIURL().replace('/graphql', '') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment