fix: don't cache waitlist count

This commit is contained in:
Maze Winther
2025-06-22 18:05:44 +02:00
parent 850c62549a
commit 95f3db8d72

View File

@ -2,6 +2,9 @@ import { Hero } from "@/components/landing/hero";
import { Header } from "@/components/header";
import { getWaitlistCount } from "@/lib/waitlist";
// Force dynamic rendering so waitlist count updates in real-time
export const dynamic = "force-dynamic";
export default async function Home() {
const signupCount = await getWaitlistCount();