Recently, my react-router project started failing on a POST request. It's weird since it does not do much, just a FETCH request.
I then narrowed it down to, whenever FETCH gets called, something crashes hardcore and I can't even catch the error, no idea why. It works locally perfectly, but when deployed, errors
The logs on the platform say nothing
I've managed to reproduce the issue in a simple repo, basically created using Vercel's templates and added one commit
https://github.com/sousandrei/react-router-bug/blob/main/app/routes/test.tsx
The expected output is of course a 200 and both before and after console messages being printed, or in a bad case, the ERROR from the catch. We get the before but nothing after
Using httpie
http --verify=no POST https://react-router-bug.vercel.app/testthen we get

PS: tried using axios as well, same issue