diff --git a/src/app/discover/page.tsx b/src/app/discover/page.tsx index 57e3fec1..bab6d5a7 100644 --- a/src/app/discover/page.tsx +++ b/src/app/discover/page.tsx @@ -3,6 +3,8 @@ import { getTrendingStorylines, getRisingStorylines } from "../../../lib/ranking import { StoryCard } from "../../components/StoryCard"; import { TabNav } from "../../components/TabNav"; +export const revalidate = 120; // ISR: regenerate at most every 2 minutes + type SearchParams = Promise<{ tab?: string }>; const TABS = ["new", "trending", "rising", "completed"] as const;