next.js/test/integration/node-fetch-keep-alive/pages/ssr.js
ssr.js10 lines246 B
export default function SSR(props) {
  return <pre id="props">{JSON.stringify(props)}</pre>
}

export async function getServerSideProps() {
  const res = await fetch('http://localhost:44001')
  const props = await res.json()
  return { props }
}
Quest for Codev2.0.0
/
SIGN IN