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

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