Skip to content

Instantly share code, notes, and snippets.

@davidnguyen11
Created January 21, 2018 08:34
Show Gist options
  • Save davidnguyen11/7a82f3eae08ad6263a44c9efdfd1f98e to your computer and use it in GitHub Desktop.
Save davidnguyen11/7a82f3eae08ad6263a44c9efdfd1f98e to your computer and use it in GitHub Desktop.
const env = process.env.ENV || 'development';
const configs = {
development: {
api: 'https://api.staging.com',
},
staging: {
api: 'https://api.staging.com',
},
production: {
api: 'https://api.production.com',
},
}[env];
export default configs;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment