From de13ba43b0a6d9653b51bd9a0b96f2cdced34779 Mon Sep 17 00:00:00 2001 From: OpenCode Worker Date: Wed, 3 Jun 2026 10:46:59 -0500 Subject: [PATCH] fix: keep dynamic blog routes static --- app/posts/[slug]/page.tsx | 1 - app/tags/[tag]/page.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/app/posts/[slug]/page.tsx b/app/posts/[slug]/page.tsx index 321b222..aff417a 100644 --- a/app/posts/[slug]/page.tsx +++ b/app/posts/[slug]/page.tsx @@ -6,7 +6,6 @@ import { ReadingProgress } from '@/components/ui/ReadingProgress' export const dynamicParams = false export const dynamic = 'force-static' -export const revalidate = 0 export async function generateStaticParams() { const posts = await getPosts() diff --git a/app/tags/[tag]/page.tsx b/app/tags/[tag]/page.tsx index 8ed87e1..df934fb 100644 --- a/app/tags/[tag]/page.tsx +++ b/app/tags/[tag]/page.tsx @@ -9,7 +9,6 @@ type TagPageProps = { export const dynamicParams = false export const dynamic = 'force-static' -export const revalidate = 0 export async function generateStaticParams() { const tags = await getAllTags()