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 config from '../config' export default function Document() { return ( <Html> <Head> <link rel="stylesheet" href={`${config.CDN}${config.paths.css}`} type="text/css" /> </Head> <body> <Main /> <NextScript /> </body> </Html> ) }