We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfc324a commit d3af77eCopy full SHA for d3af77e
apps/web/app/(blog)/blog/page.tsx
@@ -3,9 +3,10 @@ import { getBlogClient } from "@/cms";
3
import Link from "next/link";
4
import React from "react";
5
6
-export const dynamic = "auto";
+export const dynamic = "force-dynamic";
7
export const revalidate = 300; // 5 minutes
8
export const metadata = {};
9
+
10
const Blog = async () => {
11
const blog = getBlogClient();
12
const { data: posts } = await blog.posts.list();
0 commit comments