| title | Missing specified subset for a `next/font/google` font |
|---|
Preload is enabled for a font that is missing a specified subset.
const inter = Inter({ subsets: ['latin'] })Note: previously it was possible to specify default subsets in your
next.config.jswith theexperimental.fontLoadersoption, but this is no longer supported.
If it's not possible to preload your intended subset you can disable preloading.
const notoSansJapanese = Noto_Sans_JP({
weight: '400',
preload: false,
})