Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-plugin-yandex-metrica

Easily add Yandex Metrica to your Gatsby site.

Install

npm install --save gatsby-plugin-yandex-metrica

Usage

In gatsby-config.js file:

module.exports = {
  plugins: [
    {
      resolve: `gatsby-plugin-yandex-metrica`,
      options: {
        trackingId: "YOUR_YANDEX_METRICA_TRACKING_ID",
        clickmap: true,
        trackLinks: true,
        accurateTrackBounce: true,
        trackHash: true,

        // Detailed recordings of user activity on the site: mouse movement, scrolling, and clicks.
        webvisor: true,
      }
    }
  ]
}
© 2023 Gatsby, Inc.