This plugin helps to integrate Plausible Analytics in your VuePress documentation website. Plausible is a alternative to Google Analytics with a focus on privacy.
There is also a list privacy-focused tracking solutions.
To install the VuePress plugin, run one of the following commands:
npm install vuepress-plugin-plausible
# or
yarn add vuepress-plugin-plausible
Add the VuePress plugin in your site or theme config file. The configuration is done as part of the plugin configuration. Your configuration file is usually located under .vuepress/config.js
. Extend it with this line:
module.exports = {
plugins: {
'plausible': { domain: 'your-domain.com' },
// other plugins
// ...
}
}
If you are self hosting Plausible, you can use this option
module.exports = {
plugins: {
'plausible': { domain: 'your-domain.com', 'selfHostedUrl': 'your-self-hosted-domain-url' },
// other plugins
// ...
}
}
Plausible can also track all outbound links. To enable outbound link tracking with this extension, do this instead of the above:
module.exports = {
plugins: {
'plausible': { domain: 'your-domain.com', outboundLinkTracking: true },
// other plugins
// ...
}
}
For more details on how to work with VuePress plugins, check out the official docs.
This package is released under the MIT license by Peter Thaleikis.