export default function SSRPage({ data }) {
return <div>{data.foo}</div>
}
export async function getServerSideProps() {
const port = process.env.NEXT_PUBLIC_API_PORT
const res = await fetch(`http://localhost:${port}/`)
const json = await res.json()
return {
props: {
data: json,
},
}
}