lib/octicons_react/pages/_document.js (17 lines of code) (raw):

import React from 'react' import Document, {Head, Main, NextScript} from 'next/document' export default class PrimerDocument extends Document { render() { return ( <html lang="en"> <Head> <link rel="stylesheet" href="https://unpkg.com/primer/build/build.css" /> </Head> <body> <Main /> <NextScript /> </body> </html> ) } }