Request failed with status code 401 after login successfully to my auth0 client it redirects with a 401 failed

Request failed with status code 401 after login successfully to my auth0 client it redirects with a 401 failed
Hello I’m using auth0 for nuxt js SDK Auth0 - nuxt auth docs
with this configuration, its login successfully with the access token, but the refresh token is not regenerated, any way the redirects to my website domain give me 401 with 500 Run Time Error
auth: {
redirect: {
login: ‘/’, // redirect user when not connected
callback: ‘/callback/’,
},
strategies: {
local: {
scheme: ‘refresh’,
token: {
property: ‘access_token’,
},
refreshToken: {
property: ‘refresh_token’,
grantType: ‘refresh_token’,
},
user: {
property: ‘user’,
autoFetch: true
},
},
auth0: {
domain: process.env.AUTH0_DOMAIN,
clientId: process.env.AUTH0_CLIENT_ID,
scope: [‘openid’, ‘offline_access’, ‘profile’],
audience: ‘mafid’,
State: ‘STATE’,
connection: ‘Username-Password-Authentication’,
responseType: ‘code’,
grantType: ‘authorization_code’,
codeChallengeMethod: ‘S256’
}
}
},