Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
fix: move viewport meta tag to head in _app.js (vercel#25901)
Browse files Browse the repository at this point in the history
Fixes one of the items that was mentioned in  vercel#25854. 
It fixes the warning in `with-next-page-transitions` by moving the viewport tag to `_app.js` from `_document.js`
  • Loading branch information
Pavel Mineev authored Jun 9, 2021
1 parent c55fc9a commit 350e74b
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 350e74b

Please sign in to comment.