From 013d8663913dfe95f23352e3684b0515a17dc51e Mon Sep 17 00:00:00 2001 From: Liam Date: Wed, 16 Oct 2024 02:35:17 +0100 Subject: [PATCH] now! --- projects/website/src/app/(pages)/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/website/src/app/(pages)/page.tsx b/projects/website/src/app/(pages)/page.tsx index 4c23989..5f50844 100644 --- a/projects/website/src/app/(pages)/page.tsx +++ b/projects/website/src/app/(pages)/page.tsx @@ -5,6 +5,8 @@ import { config } from "../../../config"; import { AppStatistics } from "@ssr/common/types/backend/app-statistics"; import Statistic from "@/components/home/statistic"; +export const dynamic = "force-dynamic"; // Always generate the page on load + export default async function HomePage() { const statistics = await ky.get(config.siteApi + "/statistics").json();