So, I have data which needs to be revalidated from a Firebase Realtime database. Everything works fine when I go for yarn run build
and then yarn run start
. But when I deploy the website to Vercel, the data does not get revalidated. How can I fix it?
Here is the function:
export async function getStaticProps({ params: { postname } }) {
const fileName = readFileSync(`posts/${postname}.md`, 'utf-8')
const { data: frontmatter, content } = matter(fileName)
const snapshot = await retrieveComments(postname).then(snapshot => {
return { props: { snapshot } }
})
const slug = postname
return {
props: {
frontmatter,
content,
snapshot,
slug
},
revalidate: 5
}
}
Try with the combination of
getStaticPaths()
and after that use