2022-11-05 01:39:51 +09:00
|
|
|
import {Html, Head, Main, NextScript} from 'next/document';
|
|
|
|
|
|
|
|
export default function Document() {
|
|
|
|
return <Html>
|
|
|
|
<Head>
|
2022-11-05 21:50:21 +09:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.3/dist/katex.min.css" integrity="sha384-Juol1FqnotbkyZUT5Z7gUPjQ9gzlwCENvUZTpQBAPxtusdwFLRy382PSDx5UUJ4/" crossOrigin="anonymous" />
|
2022-11-05 01:39:51 +09:00
|
|
|
<link rel="stylesheet" type="text/css" href="https://cdn.sup39.dev/css/index.css" />
|
|
|
|
</Head>
|
|
|
|
<body>
|
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</Html>;
|
|
|
|
}
|