rsnext/examples/blog-with-comment/pages/_document.tsx
Adem ilter c1b76bd36d
example fix url (#42695)
Co-authored-by: Steven Tey <stevensteel97@gmail.com>
Co-authored-by: JJ Kasper <jj@jjsweb.site>
2022-11-09 12:51:22 -06:00

17 lines
441 B
TypeScript

import { Html, Head, Main, NextScript } from 'next/document'
export default function Document() {
return (
<Html lang="en">
<Head>
<meta charSet="utf-8" />
<meta name="robots" content="follow, index" />
<meta httpEquiv="x-ua-compatible" content="ie=edge" />
</Head>
<body className="bg-white text-gray-700 antialiased">
<Main />
<NextScript />
</body>
</Html>
)
}