Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-prismic-lazy-load

Lazyloads images processed by gatsby-transformer-prismic with using lazysizes

The plugin makes lazyload possible by:

  • Move src and srcset to data-src and data-srcset respectively.
  • Add class lazyload to img tag.

lazysizes has to be installed to make this plugin work.

Install

npm install --save gatsby-prismic-lazy-load

npm install --save lazysizes

How to use

// In your gatsby-config.js
plugins: [
  {
    resolve: `gatsby-transformer-prismic`,
    options: {
      plugins: [
        `gatsby-prismic-lazy-load`,
      ]
    }
  }
]
// In your gatsby-browser.js
import 'lazysizes'

Contribution

This is a minimum plugin. Please make an issue when you need more functionalities or code doesn’t work!

© 2023 Gatsby, Inc.