File size: 291 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
import { workUnitAsyncStorage } from 'next/dist/server/app-render/work-unit-async-storage.external'
export default async function Page() {
// cookies is undefined if not set
return !!workUnitAsyncStorage.getStore().cookies ? 'success' : 'fail'
}
export const dynamic = 'force-dynamic'
|