Skip to content

Commit

Permalink
chore: removed extra console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Azurency committed Nov 29, 2023
1 parent abf4754 commit 5405e60
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/runtime/server/utils/security.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ export const checks = {
if (checks?.includes('pkce')) {
const pkceVerifier = generateCodeVerifier()
const pkceChallenge = await pkceCodeChallenge(pkceVerifier)
console.log('pkceVerifier', pkceVerifier)
console.log('pkceChallenge', pkceChallenge)
res['code_challenge'] = pkceChallenge
res['code_challenge_method'] = 'S256'
setCookie(event, 'nuxt-auth-util-verifier', pkceVerifier, { maxAge: 60 * 15, secure: true, httpOnly: true, sameSite: 'lax' })
Expand Down

0 comments on commit 5405e60

Please sign in to comment.