Skip to content
New issue

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

fix: move viewport meta tag to head in _app.js #25901

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions examples/with-next-page-transitions/pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Head from 'next/head'
import { PageTransition } from 'next-page-transitions'

import Loader from '../components/Loader'
Expand All @@ -7,6 +8,9 @@ const TIMEOUT = 400
function MyApp({ Component, pageProps }) {
return (
<>
<Head>
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
</Head>
<PageTransition
timeout={TIMEOUT}
classNames="page-transition"
Expand Down
4 changes: 0 additions & 4 deletions examples/with-next-page-transitions/pages/_document.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ export default class MyDocument extends Document {
return (
<Html lang="en">
<Head>
<meta
name="viewport"
content="initial-scale=1.0, width=device-width"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css"
Expand Down