This commit is contained in:
Benjamin Toby 2025-07-20 10:41:55 +01:00
parent 9cb79e42d0
commit b6a5982f02
2 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,7 @@ export const getStaticProps: GetStaticProps<PagePropsType> = async (ctx) => {
blogPost: singleBlogPost, blogPost: singleBlogPost,
mdxSource, mdxSource,
}, },
revalidate: 3600,
}; };
}; };

View File

@ -30,5 +30,6 @@ export const getStaticProps: GetStaticProps<PagePropsType> = async (ctx) => {
props: { props: {
blogPosts: blogPosts.payload || null, blogPosts: blogPosts.payload || null,
}, },
revalidate: 3600,
}; };
}; };