next.js/test/e2e/app-dir/app-edge/app/edge-apis/process/page.tsx
page.tsx18 lines310 B
import React from 'react'

export default function Page() {
  return (
    <>
      <p id="process">
        {typeof process === 'object'
          ? typeof process.emit === 'function'
            ? 'emit'
            : 'object'
          : 'undefined'}
      </p>
    </>
  )
}

export const runtime = 'edge'
Quest for Codev2.0.0
/
SIGN IN