import Link from 'next/link' export async function getStaticProps() { // throw new Error('oops from getStaticProps') return { props: { world: 'world', time: new Date().getTime() }, // bad-prop unstable_revalidate: 1, } } const Page = ({ world, time }) => { return ( <> {/*
idk
*/}

hello {world}

time: {time} to non-json
to another
to something
to normal
to dynamic to broken to broken at first
to another dynamic to catchall ) } export default Page