https://github.com/simpleanalytics/gridsome-plugin
Gridsome plugin for Simple Analytics
https://github.com/simpleanalytics/gridsome-plugin
Last synced: about 1 year ago
JSON representation
Gridsome plugin for Simple Analytics
- Host: GitHub
- URL: https://github.com/simpleanalytics/gridsome-plugin
- Owner: simpleanalytics
- Created: 2019-05-09T21:16:53.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-24T20:18:00.000Z (over 1 year ago)
- Last Synced: 2025-06-01T09:55:37.809Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://gridsome.org/plugins/gridsome-plugin-simple-analytics
- Size: 13.7 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gridsome Plugin
[Simple Analytics](https://simpleanalytics.com) 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](https://www.npmjs.com/package/simple-analytics-vue) package.
## Install
- `npm install gridsome-plugin-simple-analytics`
- `yarn add gridsome-plugin-simple-analytics`
## Usage
```js
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](https://docs.simpleanalytics.com/bypass-ad-blockers).
```js
module.exports = {
plugins: [
{
use: 'gridsome-plugin-simple-analytics',
options: {
domain: 'api.example.com'
}
}
]
}
```