next.js/test/e2e/instrumentation-hook-src/src/pages/edge.tsx
edge.tsx16 lines227 B
import React from 'react'

export default function EdgePage() {
  return <div>Edge Page</div>
}

export const config = {
  runtime: 'experimental-edge',
}

export function getServerSideProps() {
  return {
    props: {},
  }
}
Quest for Codev2.0.0
/
SIGN IN