From fe619e124d53d4dc7a236cc9472129b1c93fcc74 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Mon, 22 Apr 2024 08:45:36 -0500 Subject: [PATCH] Move /grid to 'force-static' --- src/app/grid/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/grid/page.tsx b/src/app/grid/page.tsx index e5ee6817..0fca4001 100644 --- a/src/app/grid/page.tsx +++ b/src/app/grid/page.tsx @@ -12,7 +12,7 @@ import PhotoGridSidebar from '@/photo/PhotoGridSidebar'; import { getPhotoSidebarDataCached } from '@/photo/data'; import { MorePhotosGrid } from '@/photo/MorePhotosGrid'; -export const revalidate = 3600; +export const dynamic = 'force-static'; export async function generateMetadata(): Promise { const photos = await getPhotosCached({ limit: MAX_PHOTOS_TO_SHOW_OG });