Pattern: Use of custom page font
Issue: -
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.
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