Skip to content

Commit

Permalink
❎ SAVE: Do as stated in the given issue
Browse files Browse the repository at this point in the history
vercel/next.js#7320
Everything breaks after making this change to the code.
  • Loading branch information
kumarabhirup committed May 13, 2019
1 parent d2bf93e commit 33b5f12
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ module.exports = withSass({
return config
},
env: {
'PROD_DOMAIN': process.env.PROD_DOMAIN
'PROD_DOMAIN': process.env.PROD_DOMAIN,
'BACKEND_SERVER': process.env.BACKEND_SERVER,
'FB_LOGIN_APP_ID': process.env.FB_LOGIN_APP_ID,
'GOOGLE_LOGIN_APP_ID': process.env.GOOGLE_LOGIN_APP_ID,
'GOOGLE_LOGIN_APP_SECRET': process.env.GOOGLE_LOGIN_APP_SECRET,
'FB_LOGIN_APP_VERSION': process.env.FB_LOGIN_APP_VERSION,
'DEV_DOMAIN': process.env.DEV_DOMAIN,
'ENDPOINT': process.env.ENDPOINT,
'GA_TRACKING_ID': process.env.GA_TRACKING_ID,
'CLOUDINARY_USERNAME': process.env.CLOUDINARY_USERNAME
}
})

0 comments on commit 33b5f12

Please sign in to comment.