Unable to retrieve data with getStaticProps
Unanswered
West African Lion posted this in #help-forum
West African LionOP
I'm not sure why, but I'm unable to get data from contentful using the following code:
Any help would be greatly appreciated
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 GetStaticPropsAny help would be greatly appreciated