next.js/test/e2e/app-dir/next-after-app/app/nodejs/interrupted/calls-not-found/page.js
page.js14 lines308 B
import { notFound } from 'next/navigation'
import { after, connection } from 'next/server'
import { cliLog } from '../../../../utils/log'

export default async function Page() {
  await connection()
  after(() => {
    cliLog({
      source: '[page] /interrupted/calls-not-found',
    })
  })
  notFound()
}
Quest for Codev2.0.0
/
SIGN IN