Skip to content

Commit

Permalink
brute forre
Browse files Browse the repository at this point in the history
  • Loading branch information
aliirz committed Nov 13, 2024
1 parent e0a5fef commit bf1b77c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/auth/userinfo/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const allowedOrigin = process.env.NODE_ENV === 'production'
export async function OPTIONS() {
return new NextResponse(null, {
headers: {
'Access-Control-Allow-Origin': allowedOrigin,
'Access-Control-Allow-Origin': "*",
'Access-Control-Allow-Methods': 'GET, OPTIONS',
'Access-Control-Allow-Headers': 'Content-Type, Authorization',
},
Expand Down

0 comments on commit bf1b77c

Please sign in to comment.