We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f25ab5 commit 07328c5Copy full SHA for 07328c5
app/blog/[...slug]/page.tsx
@@ -20,6 +20,8 @@ type Props = {
20
params: { slug: string[] };
21
};
22
23
+export const dynamic = "force-static";
24
+
25
export async function generateStaticParams() {
26
const articles = await getArticles();
27
return articles
app/changelog/[...slug]/page.tsx
@@ -10,6 +10,8 @@ type Props = {
10
11
12
13
14
15
16
const changelogs = await getChangelogs();
17
return changelogs
0 commit comments