Hi Everyone!
What could go wrong that my Users dashboard is not updating, looks that Vercel Caching even tho I implemnted the force-no-store?
In my localhost its works well, but when I build on Vercel, the users state is not updated in the dashboard. I even implemented a hard refresh endpoint, after trying lot ways to disable cache.
While I think its Vercel cache, Still find interesting that even just after Prisma Find Users, its Logging the old values. So not just in the /page.tsx, but in the helper where I do prisma.user.findMany({…}) the returned values are old.
But I’m using same database on Local and Vercel Host and only the vercel which caches the data.
However I I Open a user profile, its showing the correct data in both vercel and local host.
Also I have similar Posts Page, for which I have the query in the client side, and its works well
Any advice, what could I do?
Thank!