import Script from 'next/script' const Page = () => ( <>
testing next/dynamic size
> ) // we add getServerSideProps to prevent static optimization // to allow us to compare server-side changes export const getServerSideProps = () => { return { props: {}, } } export default Page