1.1.0 • Published 5 years ago

gridsome-plugin-simple-analytics v1.1.0

Weekly downloads
93
License
MIT
Repository
github
Last release
5 years ago

Simple Analytics for Gridsome

Simple Analytics is a clean, simple, and privacy friendly analytics tool. Actionable data in a beautiful dashboard. It does not use cookies and you can bypass ad blockers. Make sure to signup to get most value out of this plugin.

It uses the Simple Analytics Vue package.

Install

  • npm install gridsome-plugin-simple-analytics
  • yarn add gridsome-plugin-simple-analytics

Usage

module.exports = {
  plugins: [
    {
      use: 'gridsome-plugin-simple-analytics'
    }
  ]
}

Bypass Ad Blockers

You can also optionally specify a custom domain to bypass ad blockers. Read more about this in our documentation.

module.exports = {
  plugins: [
    {
      use: 'gridsome-plugin-simple-analytics',
      options: {
        domain: 'api.example.com'
      }
    }
  ]
}