DEV Community

Discussion on: Build a site with Nextjs and Airtable

Collapse
 
julbrs profile image
Julien Bras

Just a typo, you are not positioning the revalidate value correctly. See here:

  return {
    props: {
      posts,
    },
    // Next.js will attempt to re-generate the page:
    // - When a request comes in
    // - At most once every 10 seconds
    revalidate: 10, // In seconds   <------
  }
Enter fullscreen mode Exit fullscreen mode

😇