Next.js Discord

Discord Forum

Unable to retrieve data with getStaticProps

Unanswered
West African Lion posted this in #help-forum
Open in Discord
West African LionOP
I'm not sure why, but I'm unable to get data from contentful using the following code:
export const getStaticProps = (async () => {

  const client = createClient({
    space: process.env.CONTENTFUL_SPACE_ID || "",
    accessToken: process.env.CONTENTFUL_ACCESS_KEY || "",
  })
  
  const res = await client.getEntries({ content_type: 'rentalPropertyPage'})
  console.log(res)
  
  return {
    props: {
      properties: res.items
    }
  }
}) satisfies GetStaticProps

Any help would be greatly appreciated

0 Replies