fix(web): disable caching on homepage with force-dynamic
Ensures fresh data is always fetched from database on homepage load. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
f50f838328
commit
579bfcfbeb
1 changed files with 2 additions and 0 deletions
|
|
@ -6,6 +6,8 @@ import Link from 'next/link';
|
|||
import { AppHeader } from '../components/AppHeader';
|
||||
import { HeroSection } from '../components/home/HeroSection';
|
||||
|
||||
export const dynamic = 'force-dynamic';
|
||||
|
||||
async function getHomePageData() {
|
||||
try {
|
||||
// Fetch stats in parallel
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue