this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add 60sec revalidation

BK610 f3a9617a 84aeb231

+4
+2
app/blog/[slug]/page.tsx
··· 3 3 import type BlogPostType from "@/types/BlogPost"; 4 4 import { Params } from "next/dist/server/request/params"; 5 5 6 + export const revalidate = 60; 7 + 6 8 export default async function Page({ params }): Promise<React.ReactElement> { 7 9 const blogPost = await getBlogPost(params); 8 10
+2
app/blog/page.tsx
··· 2 2 import { importCSVDataAsJson } from "@/lib/sheetsConnector"; 3 3 import type BlogPostType from "@/types/BlogPost"; 4 4 5 + export const revalidate = 60; 6 + 5 7 export default async function Page(): Promise<React.ReactElement> { 6 8 const blogPosts = await getBlogPosts(); 7 9