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