Checklist
Describe the problem you'd like to have solved
My application utilizes HTTP rewrites to offer multi-tenant subdomains like in: https://vercel.com/templates/next.js/platforms-starter-kit
I'd like to configure access token and profile routes because I am instantiating tenant-specific Auth0Clients at request time based on the accessed subdomain
Describe the ideal solution
Instead of:
export type RoutesOptions = Partial<Pick<Routes, "login" | "callback" | "logout" | "backChannelLogout">>;
This:
export type RoutesOptions = Partial<Routes>;
Also update functions getAccessToken and useUser
Alternatives and current workarounds
No response
Additional context
No response