Skip to content

Commit 7ae913e

Browse files
cj-vanaclaude
andcommitted
Fix map page stale data - force dynamic rendering
Add dynamic = 'force-dynamic' and revalidate = 0 to the map page to prevent Netlify from caching the page with stale data. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5c8649b commit 7ae913e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/app/map/page.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ import { NetworkMapWrapper } from '@/components';
44
import JsonLd from '@/components/JsonLd';
55
import { generateBreadcrumbSchema } from '@/lib/schemas/breadcrumb';
66

7+
// Force dynamic rendering to prevent stale cache issues on Netlify
8+
export const dynamic = 'force-dynamic';
9+
export const revalidate = 0;
10+
711
export const metadata: Metadata = {
812
title: 'Network Map',
913
description:

0 commit comments

Comments
 (0)