Open YoungiiJC opened 4 years ago
When importing weights for Nunito Sans, the escape character \ breaks the weights import.
\
module.exports = { plugins: [ { resolve: `gatsby-plugin-google-fonts`, options: { fonts: [ `Nunito Sans:\200,300,400,600,700,800,900` // escape character breaks import `Nunito Sans:200,300,400,600,700,800,900` // this works ], } } ] }
That may be a typo, @YoungiiJC. You are escaping 2 in your code, not the :. I don't think escaping the colon is necessary, period.
2
:
When importing weights for Nunito Sans, the escape character
\
breaks the weights import.