_document.tsx 233 B

12345678910111213
  1. import { Html, Head, Main, NextScript } from "next/document";
  2. export default function Document() {
  3. return (
  4. <Html lang="en">
  5. <Head />
  6. <body>
  7. <Main />
  8. <NextScript />
  9. </body>
  10. </Html>
  11. );
  12. }