Created
June 9, 2016 20:56
-
-
Save atonse/d67fee2e67204b582103836eafeb9f05 to your computer and use it in GitHub Desktop.
example config object for your js app that wastes your time cuz it didn't provide this for you
This file contains 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
export default { | |
development: { | |
apiBaseURL: "https://localhost:8888/v1" | |
}, | |
qa: { | |
apiBaseURL: "https://api.qa.something.com/v1" | |
}, | |
production: { | |
apiBaseURL: "https://api.something.com/v1" | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment