rsnext/errors/google-fonts-missing-subsets.mdx
Delba de Oliveira 44d1a1cb15
docs: Migrate error messages to MDX and App Router. (#52038)
This PR is part of a larger effort to migrate error messages to MDX and
use App Router: https://github.com/vercel/front/pull/23459
2023-07-05 06:11:16 -07:00

32 lines
839 B
Text

---
title: 'Missing specified subset for a `next/font/google` font'
---
## Why This Error Occurred
Preload is enabled for a font that is missing a specified subset.
## Possible Ways to Fix It
##### Specify which subsets to preload for that font.
```js filename="example.js"
const inter = Inter({ subsets: ['latin'] })
```
Note: previously it was possible to specify default subsets in your `next.config.js` with the `experimental.fontLoaders` option, but this is no longer supported.
##### Disable preloading for that font
If it's not possible to preload your intended subset you can disable preloading.
```js filename="example.js"
const notoSansJapanese = Noto_Sans_JP({
weight: '400',
preload: false,
})
```
## Useful Links
[Specifying a subset](/docs/pages/building-your-application/optimizing/fonts#specifying-a-subset)