My app deployed succesfully, but when I visit the root, it shows "Not found"

Since about 20 hours ago, my app cannot be access from /, it always show "Not found", not the 404 page of mine, and the HTTP code is 200. But I can visit it from deep path, like /login, /projects, etc. It works well in the deep path. We use a router group like (dashboard), it works well in my local dev environment, and it worked well in the past days. Someone please help me, thanks a lot.
13 Replies
FACELESSMAN
FACELESSMAN2w ago
GitHub
[🐛 Bug]: SSR for root route "/" fails with "Not Found" after rec...
next-on-pages environment related information System: Platform: linux Arch: x64 Version: #1 SMP PREEMPT_DYNAMIC Thu Jul 3 09:27:14 UTC 2025 CPU: (2) x64 Intel(R) Xeon(R) CPU @ 2.20GHz Memory: 8 GB ...
FACELESSMAN
FACELESSMAN2w ago
@Meathill is this you who posted this? there's a lot of us having this issue
Meathill
MeathillOP2w ago
Yes, exactly Oops, sorry, I didn't post this, but I have the exactly same issue
Mark Harris
Mark Harris2w ago
Is there any further update here i am also experiencing this issue
Meathill
MeathillOP2w ago
I think currently the only way to resolve this is migrating to Worker
Mark Harris
Mark Harris2w ago
thanks, we have that as an action might have to fast track it
RHYTHM
RHYTHM7d ago
This worked for me. https://github.com/cloudflare/next-on-pages/issues/978#issuecomment-3188743314 Add the following to your package.json:
{
"devDependencies": {
"vercel": "44.5.5"
},
"overrides": {
"vercel": "$vercel"
}
}
{
"devDependencies": {
"vercel": "44.5.5"
},
"overrides": {
"vercel": "$vercel"
}
}
You have to reinstall and regenerate the lockfile as well
Meathill
MeathillOP7d ago
I migrate our project to Worker. I think that's what Cloudflare hope too.
Mark Harris
Mark Harris7d ago
this has worked for me as well.
Mirza
Mirza7d ago
still showing the "Not found"
No description
Mirza
Mirza7d ago
Did that worked?
Meathill
MeathillOP7d ago
Yes, it worked. And I have to say, it's not so hard. Just follow the tutorial from OpenNext
Mirza
Mirza7d ago
yeah on it, thanks

Did you find this page helpful?