We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This warninng is resolved by following this solution mentioned in vercel/next.js#13230
comment out the meta tag in _document.js (where { Head } is imported from "next/document")...
export default () => ( <> </> ) ...it works correctly! Only the correct viewport element shows up on the page.
vercel/next.js/issues/13230
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This warninng is resolved by following this solution mentioned in vercel/next.js#13230
comment out the meta tag in _document.js (where { Head } is imported from "next/document")...
{/* */} ...and add it in a new Head component in index.js (importing Head from "next/head")...export default () => (
<>
</>
)
...it works correctly! Only the correct viewport element shows up on the page.
vercel/next.js/issues/13230
The text was updated successfully, but these errors were encountered: