Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 579 Bytes

built-in-next-font.md

File metadata and controls

18 lines (11 loc) · 579 Bytes

Built-in next/font

Why This Error Occurred

Starting with Next.js 13.2, next/font is built-in to Next.js and no longer needs to be installed. The @next/font package will be removed in Next.js 14.

Possible Ways to Fix It

Run the built-in-next-font codemod to automatically uninstall @next/font and change @next/font imports to next/font:

npx @next/codemod built-in-next-font .

Useful Links