()
| 1 | import { Html, Head, Main, NextScript } from "next/document"; |
| 2 | |
| 3 | export default function Document() { |
| 4 | return ( |
| 5 | <Html lang="en"> |
| 6 | <Head> |
| 7 | <link |
| 8 | rel="icon" |
| 9 | href="/favicon-light.png" |
| 10 | media="(prefers-color-scheme: light)" |
| 11 | /> |
| 12 | <link |
| 13 | rel="icon" |
| 14 | href="/favicon-dark.png" |
| 15 | media="(prefers-color-scheme: dark)" |
| 16 | /> |
| 17 | </Head> |
| 18 | <body className="antialiased"> |
| 19 | <Main /> |
| 20 | <NextScript /> |
| 21 | </body> |
| 22 | </Html> |
| 23 | ); |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected