My Firebase Studio project was running perfectly on IDX. Suddenly, my app stopped working and started giving 404 errors. I hadn’t touched any JSON file when the issue appeared. I tried downgrading Next.js from version 15 to 14.2.5, but the problem persists.
When I test the app at:
it shows a 404 error. My folder structure is correct, and I am using the app route properly.
Is anyone else facing this, or is there an update on IDX that could be causing this issue?
Thanks for any help.
A 404 error means that you are attempting to load a page that your Next.js app doesn’t have a route for. Next.js is failing to render this route. It could be that Next.js isn’t building for another reason and is unable to render any route. Review the server build logs in code mode to see if you are building successfully.