From c2e6f397403152d4462284ff759ec3bd2d049fa9 Mon Sep 17 00:00:00 2001 From: shenlan Date: Mon, 6 Oct 2025 10:04:30 +0800 Subject: [PATCH] fix: disable register page static caching (#414) --- ui/homepage/app/register/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/homepage/app/register/page.tsx b/ui/homepage/app/register/page.tsx index 9bd965c..76c56de 100644 --- a/ui/homepage/app/register/page.tsx +++ b/ui/homepage/app/register/page.tsx @@ -1,4 +1,6 @@ -export const dynamic = 'error' +export const dynamic = 'force-dynamic' + +export const revalidate = 0 import { Suspense } from 'react' import { notFound } from 'next/navigation'