Skip to content
This repository has been archived by the owner on Oct 25, 2020. It is now read-only.

Tyrrrz/gatsby-plugin-clicky

Repository files navigation

gatsby-plugin-clicky

This plugin provides Clicky web analytics integration for your Gatsby website.

Install

npm install --save gatsby-plugin-clicky

Usage

// In your gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: `gatsby-plugin-clicky`,
      options: {
        siteId: 'YOUR_CLICKY_SITE_ID'
      }
    }
  ]
};