Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import * as React from 'react'
import { cookies } from 'next/headers'
if (!('hot' in Math)) Math.hot = false
export default function page() {
// make the page dynamic
cookies()
const previous = Math.hot
Math.hot = true
// crash the server after responding
if (process.env.CRASH_FUNCTION) {
setTimeout(() => {
throw new Error('crash')
}, 500)
}
return <div>{previous ? 'HOT' : 'COLD'}</div>
}