nuxt-modules / google-fonts

Google Fonts module for NuxtJS
https://google-fonts.nuxtjs.org
MIT License
497 stars 41 forks source link

Download all font weights #181

Open WritemediaWill opened 5 months ago

WritemediaWill commented 5 months ago

Is it possible to specify to download all font weights, instead of having to specify them individually?

My presumption was setting to true would do this, but it doesn't seem to be the case.

ricardogobbosouza commented 3 months ago

Hi @WritemediaWill

true represents the normal font weight 400

We can think about adding an all option

export default {
  googleFonts: {
    families: {
      Roboto: 'all',
    }
  }
}