Hello,
After logging into the website and a session is established the website operates normally, and there is no apparent issue with login however two console errors appear regarding the web manifest and CORS.
I am running Next.JS 13.4.12 and @auth0/nextjs-auth0 3.1.0. The error is logged on our production/dev/local environments.
Here are the errors:
Access to manifest at 'https://[REDACTED].us.auth0.com/authorize?client_id=[REDACTED]&scope=openid%20profile%20email%20user%3Aregular%20offline_access&response_type=code&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fapi%2Fauth%2Fcallback&audience=[REDACTED]&nonce=[REDACTED]&state=[REDACTED]&code_challenge_method=S256&code_challenge=[REDACTED]' (redirected from 'http://localhost:3000/site.webmanifest') from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
GET https://[REDACTED].us.auth0.com/authorize?client_id=[REDACTED]&scope=openid%20profile%20email%20user%3Aregular%20offline_access&response_type=code&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fapi%2Fauth%2Fcallback&audience=[REDACTED]&nonce=[REDACTED]&state=[REDACTED]&code_challenge_method=S256&code_challenge=ICe4IHUh545OoDU-iwZVhum8zIGg8V3HxdztOkE_mWk net::ERR_FAILED 302
Does anyone know what is going on here? I’ve never seen this error or mention of it anywhere else. Ideally the web app doesn’t have these random errors that seem meaningless.
Thanks!