Adding local env config variables

This commit is contained in:
Adam Stankiewicz
2019-05-16 07:55:33 -07:00
parent e0633dc816
commit bdee388dbd
2 changed files with 8 additions and 2 deletions

View File

@@ -122,10 +122,13 @@ module.exports = Merge.smart(commonConfig, {
TWITTER_URL: 'https://twitter.com',
YOU_TUBE_URL: 'https://www.youtube.com',
LINKED_IN_URL: 'https://www.linkedin.com',
GOOGLE_PLUS_URL: 'https://plus.google.com',
REDDIT_URL: 'https://www.reddit.com',
APPLE_APP_STORE_URL: 'https://www.apple.com/ios/app-store/',
GOOGLE_PLAY_URL: 'https://play.google.com/store',
ENTERPRISE_MARKETING_URL: 'https://business.edx.org',
ENTERPRISE_MARKETING_UTM_SOURCE: 'gradebook.edx.org',
ENTERPRISE_MARKETING_UTM_CAMPAIGN: 'edX.org Referral',
ENTERPRISE_MARKETING_FOOTER_UTM_MEDIUM: 'Footer',
}),
// when the --hot option is not passed in as part of the command
// the HotModuleReplacementPlugin has to be specified in the Webpack configuration

View File

@@ -137,10 +137,13 @@ module.exports = Merge.smart(commonConfig, {
TWITTER_URL: null,
YOU_TUBE_URL: null,
LINKED_IN_URL: null,
GOOGLE_PLUS_URL: null,
REDDIT_URL: null,
APPLE_APP_STORE_URL: null,
GOOGLE_PLAY_URL: null,
ENTERPRISE_MARKETING_URL: null,
ENTERPRISE_MARKETING_UTM_SOURCE: null,
ENTERPRISE_MARKETING_UTM_CAMPAIGN: null,
ENTERPRISE_MARKETING_FOOTER_UTM_MEDIUM: null,
}),
],
});