gatsby load fonts from google api code example
Example: gatsby google font
yarn add gatsby-plugin-google-fonts
// or
npm install gatsby-plugin-google-fonts --save
module.exports = {
siteMetadata: {
title: `I like Google fonts`
},
plugins: [
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`limelight`,
`source sans pro\:300,400,400i,700` // you can also specify font weights and styles
],
display: 'swap'
}
}
]
}