import { unstable_expireTag, unstable_cache } from 'next/cache' import { RevalidateButton } from '../revalidate-button' export const dynamic = 'force-dynamic' export default async function Page() { async function revalidate() { 'use server' await unstable_expireTag('undefined-value-data') } const cachedData = await unstable_cache( async () => { return undefined as undefined }, ['undefined-value'], { tags: ['undefined-value-data'], } )() return (

random: {Math.random()}

typeof cachedData: {typeof cachedData}

) }