Created
January 21, 2018 08:34
-
-
Save davidnguyen11/7a82f3eae08ad6263a44c9efdfd1f98e 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
| 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