You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617
  1. import Document, { Head, Html, Main, NextScript } from 'next/document';
  2. class MyDocument extends Document {
  3. render() {
  4. return (
  5. <Html lang="en">
  6. <Head />
  7. <body>
  8. <Main />
  9. <NextScript />
  10. </body>
  11. </Html>
  12. );
  13. }
  14. }
  15. export default MyDocument;