Skip to content

Commit

Permalink
fix: move viewport meta tag to head in _app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Mineev committed Jun 8, 2021
1 parent c8680a3 commit 5d34997
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 5d34997

Please sign in to comment.