Skip to content

Instantly share code, notes, and snippets.

@MicroBenz
Created March 10, 2018 13:36
Show Gist options
  • Save MicroBenz/1444da73065f4fe676ceb4ac033254c7 to your computer and use it in GitHub Desktop.
Save MicroBenz/1444da73065f4fe676ceb4ac033254c7 to your computer and use it in GitHub Desktop.
React Context
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