()
| 5 | |
| 6 | export default class MyDocument extends Document { |
| 7 | render() { |
| 8 | return ( |
| 9 | <Html lang="en"> |
| 10 | <Head> |
| 11 | <link rel="stylesheet" href="/fonts/Inter/Inter.css" /> |
| 12 | <link rel="stylesheet" href="/fonts/Druk/Druk.css" /> |
| 13 | </Head> |
| 14 | <body> |
| 15 | <Main /> |
| 16 | <NextScript /> |
| 17 | </body> |
| 18 | </Html> |
| 19 | ); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | // `getInitialProps` belongs to `_document` (instead of `_app`), |
nothing calls this directly
no outgoing calls
no test coverage detected