_document.js 443 B

12345678910111213141516171819
  1. import { Html, Head, Main, NextScript } from "next/document";
  2. export default function Document() {
  3. return (
  4. <Html>
  5. <Head>
  6. <link
  7. rel="stylesheet"
  8. href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&amp;display=swap"
  9. data-ignore="true"
  10. />
  11. </Head>
  12. <body>
  13. <Main />
  14. <NextScript />
  15. </body>
  16. </Html>
  17. );
  18. }