export default async function Page() { const data = await fetch( 'https://next-data-api-endpoint.vercel.app/api/utf8-encoding', { next: { revalidate: 3, }, } ).then((res) => res.text()) return ( <>

/variable-revalidate/encoding

{data}

) }