next.js meta tag
Opened this issue · 0 comments
shldhee commented
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