next.js/test/development/browser-logs/fixtures/app/edge-deep-stack/page.js
page.js22 lines287 B
'use client'

export const runtime = 'edge'

function functionA() {
  throw new Error('Deep stack error during render')
}

function functionB() {
  functionA()
}

function functionC() {
  functionB()
}

export default function EdgeDeepStackPage() {
  functionC()

  return <div></div>
}
Quest for Codev2.0.0
/
SIGN IN