We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70b8efe commit 0a1c9dcCopy full SHA for 0a1c9dc
2 files changed
admin/index.html
@@ -15,7 +15,7 @@
15
name: 'github',
16
repo: 'kyliemckinleydemo/sandeep-khera-website',
17
branch: 'main',
18
- base_url: 'https://fixedwebsite.vercel.app',
+ base_url: 'https://sandeepkhera.vercel.app',
19
auth_endpoint: '/api/auth'
20
},
21
media_folder: 'images/blog',
api/auth.js
@@ -5,7 +5,7 @@ export default function handler(req, res) {
5
return res.status(500).send('GITHUB_CLIENT_ID not configured');
6
}
7
8
- const redirectUri = `https://fixedwebsite.vercel.app/api/callback`;
+ const redirectUri = `https://sandeepkhera.vercel.app/api/callback`;
9
const scope = 'repo,user';
10
11
const authUrl = `https://github.com/login/oauth/authorize?client_id=${clientId}&redirect_uri=${encodeURIComponent(redirectUri)}&scope=${scope}`;
0 commit comments