Extend index page to 60 second revalidate

Main reason is because the edge requests are kinda spending a lot more
bandwidth than I should be allowing. I assume due to updown.io
This commit is contained in:
2024-12-31 19:40:45 -06:00
parent fbe2834a0a
commit 07872bcfbf

View File

@@ -34,7 +34,7 @@ export async function getStaticProps(): Promise<
{ text: "Resume", href: resumeUrl },
],
},
revalidate: 60 * 10,
revalidate: 60 * 60,
};
}