Fix Auth0 JWT import path

This commit is contained in:
gpt-engineer-app[bot]
2025-11-01 01:08:44 +00:00
parent b2bf9a6e20
commit 26e5753807

View File

@@ -4,7 +4,7 @@
* Provides JWT verification using Auth0 JWKS
*/
import { jwtVerify, createRemoteJWKSet, JWTPayload } from 'jose';
import { jwtVerify, createRemoteJWKSet, type JWTPayload } from 'https://esm.sh/jose@5.2.0';
const AUTH0_DOMAIN = Deno.env.get('AUTH0_DOMAIN') || '';
const AUTH0_CLIENT_ID = Deno.env.get('AUTH0_CLIENT_ID') || '';