rsnext/errors/no-page-custom-font.md
2021-05-11 13:05:03 +02:00

1.1 KiB

No Page Custom Font

Why This Error Occurred

A custom font was added to a page and not with a custom Document. This only adds the font to the specific page and not to the entire application.

Possible Ways to Fix It

Create the file ./pages/_document.js and add the font to a custom Document:

// pages/_document.js

import Document, { Html, Head, Main, NextScript } from 'next/document'

class MyDocument extends Document {
  render() {
    return (
      <Html>
        <Head>
          <link
            href="https://fonts.googleapis.com/css2?family=Inter&display=optional"
            rel="stylesheet"
          />
        </Head>
        <body>
          <Main />
          <NextScript />
        </body>
      </Html>
    )
  }
}

export default MyDocument

When Not To Use It

If you have a reason to only load a font for a particular page, then you can disable this rule.