Gatsby client routes go to 404 in development environment
March 30, 2021 at 7:10pmGatsby client routes go to 404 in development environment
March 30, 2021 at 7:10pm (Edited 1 year ago)I am working on a gatsby hybrid app that has several client-only routes with dynamic server data.
Strangely when navigating to one of the client-only routes at I am getting the 404 page and the message that there is no page found.
Visiting the client-only URL directly, eg. mysite/auth/login, works, and the issue only happens when using an internal Link component or navigate('/auth/login').

I am using the gatsby-plugin-create-client-paths setup

and Router component to handle the client-routing

I am have tried different approaches but couldn't figure out why I am being redirected to the 404 page.
The issue happens only on the inial page visit. Once the page has been loaded internal navigation works without errors and also only happens in development mode. The production build works just fine.
Any ideas what could cause this behavior??