Cache-control

This commit is contained in:
2022-11-03 15:12:03 +01:00
parent 652d84e296
commit f56a04b2e7
4 changed files with 11 additions and 3 deletions

View File

@ -21,6 +21,8 @@ export const getServerSideProps: GetServerSideProps = async (context) => {
const contentHtml = await generateContent(contentEntry, Number.parseInt(page)) as string;
const contentPrepared = prepareDOM(contentHtml);
context.res.setHeader("Cache-Control", "public, s-maxage=3600, stale-while-revalidate=600");
return {
props: {
content: {