From fa9dcf079161cdd57c38e7eb6d7b4387b3c37821 Mon Sep 17 00:00:00 2001 From: Dimitris Fasoulas Date: Tue, 4 Feb 2025 15:26:30 +0100 Subject: [PATCH] Fixed typo (#6467) --- .../docs/src/content/gateway/authorization-authentication.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/docs/src/content/gateway/authorization-authentication.mdx b/packages/web/docs/src/content/gateway/authorization-authentication.mdx index a680ad53e..6a3c83283 100644 --- a/packages/web/docs/src/content/gateway/authorization-authentication.mdx +++ b/packages/web/docs/src/content/gateway/authorization-authentication.mdx @@ -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' }), ],