import Head from 'next/head' const Page = () => ( <>
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