shldhee / note

개인노트
0 stars 0 forks source link

next.js meta tag #11

Open shldhee opened 3 years ago

shldhee commented 3 years ago

https://nextjs.org/docs/messages/no-document-viewport-meta

function MyApp({ Component, pageProps }: AppProps): JSX.Element {
  return (
    <>
      <Head>
        <meta
          name="viewport"
          content="width=device-width, initial-scale=1.0, maximum-scale=1.0,user-scalable=0"
        />
      </Head>
      <Component {...pageProps} />
    </>
  )
}
export default MyApp