File size: 410 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
if (!('hot' in Math)) Math.hot = false

export default function page({ hot }) {
  return `${hot ? 'HOT' : 'COLD'}`
}

export async function getServerSideProps() {
  const wasHot = Math.hot
  Math.hot = true

  // crash the server after responding
  if (process.env.CRASH_FUNCTION) {
    setTimeout(() => {
      throw new Error('crash')
    }, 700)
  }

  return {
    props: {
      hot: wasHot,
    },
  }
}