async function getDataExample() { const res = await fetch("https://jsonplaceholder.typicode.com/posts", { next: { revalidate: 60, }, }); return res.json(); }