Skip to content

Commit

Permalink
fix: env vars in next config completely resemble true env
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonkadas committed Dec 19, 2023
1 parent 987f846 commit 6fc5b03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const nextConfig = {
module.exports = {
...nextConfig,
env: {
GH_CLIENT_ID: process.env.GITHUB_ID,
GH_CLIENT_SECRET: process.env.GITHUB_SECRET,
GITHUB_ID: process.env.GITHUB_ID,
GITHUB_SECRET: process.env.GITHUB_SECRET,
},
images: {
domains: [
Expand Down

0 comments on commit 6fc5b03

Please sign in to comment.