From 9ac80068316dc4342e9c6e7fbc311ddcc4de6c7d Mon Sep 17 00:00:00 2001 From: DMleadgen Date: Fri, 27 Mar 2026 12:48:54 -0600 Subject: [PATCH] Make manuals routes runtime-backed --- app/manuals/dashboard/page.tsx | 2 ++ app/manuals/page.tsx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/app/manuals/dashboard/page.tsx b/app/manuals/dashboard/page.tsx index ee2768c0..cec30dfd 100644 --- a/app/manuals/dashboard/page.tsx +++ b/app/manuals/dashboard/page.tsx @@ -1,3 +1,5 @@ +export const dynamic = "force-dynamic" + import { Metadata } from 'next' import { ManualsDashboardClient } from '@/components/manuals-dashboard-client' import { PublicInset, PublicPageHeader } from '@/components/public-surface' diff --git a/app/manuals/page.tsx b/app/manuals/page.tsx index 81eab48a..13d94a29 100644 --- a/app/manuals/page.tsx +++ b/app/manuals/page.tsx @@ -1,3 +1,5 @@ +export const dynamic = "force-dynamic" + import { existsSync } from 'fs' import { join } from 'path' import { Metadata } from 'next'