You can set the default revalidation time for the layout or page to be equal to 0,This approach can effectively solve the problem you have raised。
export const revalidate = 0
or:
const res = await fetch(
"https://a*******z/api/v1/posts",
{ next: { revalidate: 0 } }
);