Solid Start with Prisma, when making changes to pages results in routing to 404 page.
I just started playing around with Solid Start and am using the Prisma template. I can spin it up just fine by generating the Prisma db with
npx prisma generate
and then starting the dev server with npm run dev -- --open
. Everything works great. However, I'm having issues with the simpliest of things. If I go into the login form page and add a div element, the entire project breaks. Now instead of seeing a login page when at /login
it fashes quickly and then I get the 404 error page. Interestingly, I can edit the names of the fields and that works, it's just when I try to add a new element.
Why is this simple change breaking the project? This is really my first time working with SSR and Prisma for that matter, however I am pretty comfortable using Solid JS. Is there something I am missing? I've tried completely restarting the dev server incase it's an issue with the HMR, but I still get the same behavior.0 Replies