next.js/test/integration/fetch-polyfill/pages/getinitialprops.js
getinitialprops.js13 lines324 B
export default function SSRPageWithGetInitialProps({ data }) {
  return <div>{data.foo}</div>
}

SSRPageWithGetInitialProps.getInitialProps = async () => {
  const port = process.env.NEXT_PUBLIC_API_PORT
  const res = await fetch(`http://localhost:${port}/`)
  const json = await res.json()
  return {
    data: json,
  }
}
Quest for Codev2.0.0
/
SIGN IN