next.js/test/development/error-overlay/pages/_document.tsx
_document.tsx14 lines231 B
import { Html, Head, Main, NextScript } from 'next/document'

export default function Document() {
  return (
    <Html lang="en">
      <Head />
      <body>
        <Main />
        <NextScript />
      </body>
    </Html>
  )
}
Quest for Codev2.0.0
/
SIGN IN