diff --git a/app/posts/[slug]/page.tsx b/app/posts/[slug]/page.tsx index f8619622..d7d7615a 100644 --- a/app/posts/[slug]/page.tsx +++ b/app/posts/[slug]/page.tsx @@ -25,7 +25,6 @@ import { } from '../../../lib/notion/client' export const revalidate = 30 -export const dynamicParams = false export async function generateStaticParams() { const posts = await getAllPosts() diff --git a/app/posts/tag/[tag]/page.tsx b/app/posts/tag/[tag]/page.tsx index 1f7ccf01..0e9144bf 100644 --- a/app/posts/tag/[tag]/page.tsx +++ b/app/posts/tag/[tag]/page.tsx @@ -21,7 +21,6 @@ import { } from '../../../../lib/notion/client' export const revalidate = 60 -export const dynamicParams = false export async function generateStaticParams() { const tags = await getAllTags()