14 lines
300 B
TypeScript
14 lines
300 B
TypeScript
|
import {Html, Head, Main, NextScript} from 'next/document';
|
||
|
|
||
|
export default function Document() {
|
||
|
return <Html>
|
||
|
<Head>
|
||
|
<link rel="stylesheet" type="text/css" href="https://cdn.sup39.dev/css/index.css" />
|
||
|
</Head>
|
||
|
<body>
|
||
|
<Main />
|
||
|
<NextScript />
|
||
|
</body>
|
||
|
</Html>;
|
||
|
}
|