I built next.js app with Convex database. There I worked just fine for few days, but now connection to database is, I think, blocked by Vercel's firewall or something like that. I tried to use other hostings and self-hosted it and website is working, but on Vercel I am just getting error from Convex's http client, that doesn't really tell anything
Error: at (node_modules/convex/dist/esm/browser/http_client.js:183:0) at (src/middleware.ts:29:20) at (node_modules/next/dist/esm/server/web/adapter.js:158:0)but connection is refused because it throws that error in here:
if (!response.ok && response.status !== STATUS_CODE_UDF_FAILED) { throw new Error(await response.text());}I have no idea what happened, because as I telled before it worked fine for few days.