Fixed typo (#6467)

This commit is contained in:
Dimitris Fasoulas 2025-02-04 15:26:30 +01:00 committed by GitHub
parent 05045306b7
commit fa9dcf0791
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,7 +78,7 @@ export const gatewayConfig = defineConfig({
]
// Configure where to look for the JWT token: in the headers, or cookies.
// By default, the plugin will look for the token in the 'authorization' header only.
tokentokenLookupLocations: [
tokenLookupLocations: [
extractFromHeader({ name: 'authorization', prefix: 'Bearer' }),
extractFromCookie({ name: 'auth' }),
],