a tool for shared writing and social publishing

make discover page static

+3
+3
app/discover/page.tsx
··· 3 3 import { SortedPublicationList } from "./SortedPublicationList"; 4 4 import { Metadata } from "next"; 5 5 6 + export const dynamic = "force-static"; 7 + export const revalidate = 60; 8 + 6 9 export type PublicationsList = Awaited<ReturnType<typeof getPublications>>; 7 10 async function getPublications() { 8 11 let { data: publications, error } = await supabaseServerClient