export const config = { runtime: 'experimental-edge', } export default function Page(props) { return ( <>

/[id]

{JSON.stringify(props)}

) } export function getServerSideProps({ req, params, query }) { return { props: { url: req.url, query, params, now: Date.now(), }, } }