blob: c783ad4451be104d5bb79d5b46951ee015c9092e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { Html, Head, Main, NextScript } from 'next/document'
import benzinConfig from '../benzinConfig'
export default function Document() {
return (
<Html>
<Head>
<link rel="stylesheet" href={`${benzinConfig.CDN}${benzinConfig.cssPath}`} type="text/css" />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
)
}
|