Skip to content

pavloko/gatsby-plugin-hotjar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gatsby-plugin-hotjar

Easily add Hotjar Analytics to your Gatsby site.

Install

yarn add gatsby-plugin-hotjar

or

npm i gatsby-plugin-hotjar --save

How to use

// In your gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: "gatsby-plugin-hotjar",
      options: {
        includeInDevelopment: true, // optional parameter to include script in development
        addToHead: false, // optional parameter to append script to the head instead of the body
        id: YOUR_HOTJAR_ID,
        sv: YOUR_HOTJAR_SNIPPET_VERSION,
      },
    },
  ],
};

To find your Hotjar ID, click the Tracking code button for your site. The Hotjar Snippet Version is in the tracking code, look for a line like:

h._hjSettings={hjid:[hotjar id],hjsv:6};

The version is the value of hjsv.

About

Gatsby plugin to add Hotjar analytics to your site.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published