20 lines
394 B
TypeScript
20 lines
394 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document';
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="en">
|
|
<Head>
|
|
<link
|
|
rel="icon"
|
|
type="image/x-icon"
|
|
href="https://projects.fivethirtyeight.com/shared/favicon.ico"
|
|
/>
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|