let runs = 0 export async function getStaticProps() { if (runs++) { throw new Error('GSP was re-run.') } return { props: { world: 'world', time: new Date().getTime(), other: Math.random(), }, } } const Page = ({ world, time, other }) => { return (

hello {world}

time: {time} other: {other}
) } export default Page