export default async function Page() {
const resp = await fetch(
`http://localhost:${process.env.PORT}/api/large-data`,
{
cache: 'force-cache',
}
)
const data = await resp.json()
return (
<>
<p id="content">{data.content}</p>
<p id="now">{data.now}</p>
</>
)
}
export const dynamic = 'force-dynamic'