import Head from 'next/head' const Page = () => ( <> hello world

testing next/head size

) // we add getServerSideProps to prevent static optimization // to allow us to compare server-side changes export const getServerSideProps = () => { return { props: {}, } } export default Page