fix: disable register page static caching (#414)

This commit is contained in:
shenlan 2025-10-06 10:04:30 +08:00 committed by GitHub
parent 169bf35e80
commit c2e6f39740

View File

@ -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'