next.js/test/unit/fixtures/page-runtime/ssr-variable-gssp.js
ssr-variable-gssp.js13 lines232 B
export default function Nodejs() {
  return 'nodejs'
}

// export an identifier instead of function
export const getServerSideProps = async () => {
  return { props: {} }
}

export const config = {
  runtime: 'experimental-edge',
}
Quest for Codev2.0.0
/
SIGN IN