Strange part is it was working a couple days ago but now nothing works I have deployed and redeployed even rebuilt the project from scratch but nothing. 404 errors when I click link in vercel and authentication errors when I use curl to test the health after deployment. Lost show nothing at all. I saw link that said moving index.js to an api folder might help but that did nothing.
this is my vercel.json file: { "version": 2, "name": "clickuplink-auth", "builds": [ { "src": "api/index.js", "use": "/node" } ], "routes": [ { "src": "/health", "dest": "/api/health" }, { "src": "/auth/callback", "dest": "/api/auth/callback" }, { "src": "/(.*)", "dest": "index.js" } ] }