Nuxt Fonts Module
Official Nuxt Fonts Module
pnpm dlx nuxi module add fonts
Add .data
dir to project root, and .gitignore
.
Configure font provider in nuxt.config.ts
:
modules: [
'@nuxt/fonts'
],
fonts: {
provider: 'google',
families: {
'Font Family Name': true
}
}
Declare a font-family in CSS to use a font:
some-element { font-family: Roboto, sans-serif; }
For more info see Using Fonts in Nuxt 3.