File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed
Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,11 @@ const clientId = process.env.DRUPAL_CLIENT_ID as string
55const clientSecret = process . env . DRUPAL_CLIENT_SECRET as string
66
77export const drupal = new NextDrupal ( baseUrl , {
8- auth : {
9- clientId,
10- clientSecret,
11- } ,
8+ // Enable to use authentication
9+ // auth: {
10+ // clientId,
11+ // clientSecret,
12+ // },
13+ // withAuth: true,
1214 // debug: true,
1315} )
Original file line number Diff line number Diff line change @@ -5,10 +5,12 @@ const clientId = process.env.DRUPAL_CLIENT_ID as string
55const clientSecret = process . env . DRUPAL_CLIENT_SECRET as string
66
77export const drupal = new NextDrupalPages ( baseUrl , {
8- auth : {
9- clientId,
10- clientSecret,
11- } ,
8+ // Enable to use authentication
9+ // auth: {
10+ // clientId,
11+ // clientSecret,
12+ // },
13+ // withAuth: true,
1214 useDefaultEndpoints : true ,
1315 // debug: true,
1416} )
You can’t perform that action at this time.
0 commit comments