Created
March 10, 2018 13:36
-
-
Save MicroBenz/1444da73065f4fe676ceb4ac033254c7 to your computer and use it in GitHub Desktop.
React Context
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 isProduction = process.env.NODE_ENV === 'production'; | |
const mediaPath = isProduction ? 'cloudfront-production-path' : 'cloudfront-development-path'; | |
export const path = (image, type) => `${mediaPath}/${type}/${image}`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment