Today I decided to work on my app and decided to update remix-run to 2.11.2. (from 2.11.0). Now, when developing locally with npm run dev, I have an issue where all of my pages infinite reload (usually after resolving my LoaderFunction in each page) producing an error in the console.
Initial URL (undefined) does not match URL at time of hydration (/), reloading page...
This error occurs after seeing [vite] connecting... in my console and occurs on any route, even if the route has absolutely nothing but an empty React object.
Googling this error lead me to this discussion, however the marked answer did not resolve my issue, and I can see no other solutions online.
I pushed the updated dependencies to production before noticing this issue, however it seems the issue is exclusive to npm run dev . The only things I can think of that I've fundamentally changed is the version bump from 2.11.0 to 2.11.2, and the axios version bump to resolve the vulnerability reported by npm audit
Has anyone encountered this before?
Hi all, I have remix app having express adapter which is deployed at the path - https://api-dev.apps.com/deployment/my-portal-ui/ As you can see its not at main domain instead its at path /deployme...