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
to nested index
to rewritten static path page
to optional catchall root to optional catchall page /value ) } export default Page