try {
this.auth0Client = await createAuth0Client({ // returns null
domain,
clientId,
cacheLocation: "localstorage",
useRefreshTokens: true,
authorizationParams: {
redirect_uri: window.location.origin,
},
});
console.debug("Auth0 Client initialized successfully"); // returns success
} catch (error) {
console.error("Error initializing Auth0 Client:", error); // no errors were catched
}
How can i debug this? i looked at api and haven’t found any log-related props for createAuth0Client