-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After upgrading to Remix 1.12.0: TypeError: Cannot read properties of undefined (reading 'remixRequestHandlerPath') #5428
Comments
I'm hitting this too, trying to upgrade from 1.8.2 -> 1.13.0
|
Adding this line:
Didn't seem to help me, no change. |
ah its this line:
If I change it to:
Then it works |
future?: FutureConfig;
The This seems to be caused by a successful browser build but unsuccessful server build, but since you already had a server build prior, the old server build is used. So there's a mismatch where the browser build could be on v1.13 and the server build could be on your previous version e.g. 1.8 To fix, you can run Might already be fixed by #5441 |
From @brophdawg11 on discord:
Also from @brophdawg11 on discord:
|
👍 I'm almost positive this is just a mismatched dependency/build issue which is why it only happened when upgrading from |
Closing as this should have been addressed by #5441 . |
What version of Remix are you using?
1.12.0
Are all your remix dependencies & dev-dependencies using the same version?
Steps to Reproduce
I'm not sure how to reproduce this, but this error started after I upgrade remix
1.11.0
to1.12.0
, I tried to reproduce by creating a project from scratch usingnpx create-remix@latest
but it worked fine.Expected Behavior
Run the remix app.
Actual Behavior
It is crashing with the error:
This is my
remix.config.js
:After digging a bit, I changed my
remix.config.js
to the following, the error stopped happening, but, got a new one 😅 :Now my browser shows
Upgrade Required
:Nothing on the terminal.
The text was updated successfully, but these errors were encountered: