Skip to content

Commit

Permalink
test: add document head multi child prod test (#35426)
Browse files Browse the repository at this point in the history
Add production test for #35424
  • Loading branch information
huozhi committed Mar 18, 2022
1 parent 9c2949a commit 910c48f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions test/production/typescript-basic/app/pages/_document.tsx
@@ -0,0 +1,16 @@
import { Html, Head, Main, NextScript } from 'next/document'

export default function Document() {
return (
<Html>
<Head>
<meta property="og:url" content="https://nextjs.org/docs" />
<meta name="theme-color" content="#ffffff" />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
)
}

0 comments on commit 910c48f

Please sign in to comment.