diff --git a/app/(root)/blog/[slug]/page.tsx b/app/(root)/blog/[slug]/page.tsx index 6c0fe3d..9e8c31f 100644 --- a/app/(root)/blog/[slug]/page.tsx +++ b/app/(root)/blog/[slug]/page.tsx @@ -40,6 +40,8 @@ interface BlogSlugArticle { _createdAt: string; } +export const dynamic = "force-static"; + export async function generateMetadata({ params }: { diff --git a/app/(root)/blog/page.tsx b/app/(root)/blog/page.tsx index 5a1df4b..a0507ed 100644 --- a/app/(root)/blog/page.tsx +++ b/app/(root)/blog/page.tsx @@ -5,6 +5,8 @@ import { Rss } from "lucide-react"; import { Button } from "@/components/ui/button"; import Link from "next/link"; +export const dynamic = "force-static"; + export const metadata: Metadata = { title: "Blog - SVR.JS", description: diff --git a/app/(root)/blog/page/[id]/page.tsx b/app/(root)/blog/page/[id]/page.tsx index 6cef77c..bba8f83 100644 --- a/app/(root)/blog/page/[id]/page.tsx +++ b/app/(root)/blog/page/[id]/page.tsx @@ -6,6 +6,8 @@ import { Rss } from "lucide-react"; import { Button } from "@/components/ui/button"; import Link from "next/link"; +export const dynamic = "force-static"; + export const metadata: Metadata = { title: "Blog - SVR.JS", description: