import Link from 'next/link' export async function getServerSideProps({ req }) { return { props: { url: req.url, world: 'world', time: new Date().getTime(), }, } } const Page = ({ world, time, url }) => { if (typeof window === 'undefined') { if (url.startsWith('/_next/data/')) { throw new Error('invalid render for data request') } } return ( <>

hello {world}

time: {time} to non-json
to another
to something
to normal
to dynamic to broken
to another dynamic to something?another=thing ) } export default Page