next.js/test/e2e/app-dir/app-esm-js/pages/_document.js
_document.js14 lines226 B
import { Html, Head, Main, NextScript } from 'next/document.js'

export default function MyDocument() {
  return (
    <Html>
      <Head />
      <body>
        <Main />
        <NextScript />
      </body>
    </Html>
  )
}
Quest for Codev2.0.0
/
SIGN IN