Vercel Caching Data during Deployment

Anybody hosted a website in Vercel recently, as when a data is fetched during deployment, it caches it even if the data is changed, so everytime a data is changed I need to click redeploy again, how can I fix this?

Tried
export const revalidate = 0;

also tried
export const revalidate = false ;

But nothing works
Was this page helpful?