Next.js Discord

Discord Forum

google fonts from next/font dont show in production site

Unanswered
Belgian Hare posted this in #help-forum
Open in Discord
Belgian HareOP
const font = Inter({
  weight: ["400", "500", "600"],
  style: ["normal"],
  subsets: ["latin"],
  display: "swap",
});

 <body className={font.className}>
     {children}
 </body>

3 Replies

Belgian HareOP
ok so turned off font optimization and it works
weird :/
before / after change