Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 718 Bytes

README.md

File metadata and controls

30 lines (25 loc) · 718 Bytes

gridsome-plugin-fathom

Quickly set up Fathom Analytics in your Gridsome project.

npm install gridsome-plugin-fathom
// gridsome.config.js

plugins: [
{
  use: 'gridsome-plugin-fathom',
    options: {
      siteId: 'your-site-id',
      // useful if you're running a self-hosted fathom instance
      trackerUrl: 'your-custom-url',
      // declare this to ensure your tracking only occurs on a single host
      host: 'something.com',
      // set to true for local debugging; defaults to false
      debug: false
    }
  }
]

In addition to setting up regular tracking, this plugin makes a $trackGoal(id) function available. Just pass the goal's ID to the function to track a goal.