Question from the Next.js test

How to use the useSWR hook in Next.js to fetch data from an API?

Easy

Take a look at this Route Handler:

// app/items/route.ts
export async function GET(){
  const res= await fetch('https://data.mongodb-api.com/...');
  const data= await res.json();

  return Response.json({ data },{ next:{ revalidate: 60 } });
}

How is cached data revalidated?

Author: AnasStatus: PublishedQuestion passed 199 times
Edit
5
Community EvaluationsNo one has reviewed this question yet, be the first!