We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a6c91d commit 841a039Copy full SHA for 841a039
1 file changed
src/v5/index.ts
@@ -15,12 +15,12 @@ export default function createNextAuthAllAccess(options: NextAuthAllAccessOption
15
const GET = async (req: NextRequest) => {
16
const { pathname } = req.nextUrl
17
18
- if (pathname.endsWith('all-access/jwks.json')) {
+ if (pathname.endsWith('/jwks.json')) {
19
const response = jwksHandler(handlerOptions)
20
return Response.json(response)
21
}
22
23
- if (pathname.endsWith('all-access/.well-known/openid-configuration')) {
+ if (pathname.endsWith('/.well-known/openid-configuration')) {
24
const response = openidConfigurationHandler(handlerOptions)
25
26
0 commit comments