1.0.8 • Published 3 years ago

gatsby-plugin-google-fonts-with-attributes v1.0.8

Weekly downloads
187
License
MIT
Repository
github
Last release
3 years ago

gatsby-plugin-google-fonts-with-attributes

This is a fork of didierfranc/gatsby-plugin-google-fonts + an option to set custom attributes.

How to use it ?

yarn add gatsby-plugin-google-fonts-with-attributes
// or
npm i gatsby-plugin-google-fonts-with-attributes

Add some fonts to your gatsby-config.js:

module.exports = {
  siteMetadata: {
    title: `I like Google fonts`,
  },
  plugins: [
    {
      resolve: `gatsby-plugin-google-fonts-with-attributes`,
      options: {
        fonts: [
          `limelight`,
          `source sans pro\:300,400,400i,700`, // you can also specify font weights and styles
        ],
        display: "swap",
        attributes: {
          rel: "stylesheet preload prefetch",
        },
      },
    },
  ],
};

How to find great ideas ?

1.0.8

3 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago