Skip to content

Commit d3af77e

Browse files
committed
wip
1 parent cfc324a commit d3af77e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/web/app/(blog)/blog/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ import { getBlogClient } from "@/cms";
33
import Link from "next/link";
44
import React from "react";
55

6-
export const dynamic = "auto";
6+
export const dynamic = "force-dynamic";
77
export const revalidate = 300; // 5 minutes
88
export const metadata = {};
9+
910
const Blog = async () => {
1011
const blog = getBlogClient();
1112
const { data: posts } = await blog.posts.list();

0 commit comments

Comments
 (0)