next.js/test/e2e/instrumentation-hook/with-async-node-page/pages/index.tsx
index.tsx12 lines240 B
export default function Page({ finished }) {
  return <p>{`Node - finished: ${finished}`}</p>
}

export async function getServerSideProps() {
  return {
    props: {
      finished: Boolean(globalThis.instrumentationFinished),
    },
  }
}
Quest for Codev2.0.0
/
SIGN IN