To easily track your Docusaurus site, you can install the PostHog plugin. This enables you to autocapture pageviews, clicks, session replays, as well as use the other features of PostHog such as surveys.
Install
Once you have your Docusaurus site set up, install the PostHog plugin:
npm install --save posthog-docusaurus
or
yarn add posthog-docusaurus
Next, add it to your Docusaurus config with your project API key and instance address, both of which you can find in your project settings.
// docusaurus.config.jsmodule.exports = {plugins: [["posthog-docusaurus",{apiKey: "<ph_project_api_key>",appUrl: "https://us.i.posthog.com", // optional, defaults to "https://us.i.posthog.com"enableInDevelopment: false, // optional},],],};
Run your site again to see events autocaptured by PostHog.
Note:You can pass additional PostHog config options to the plugin, but they are passed through
JSON.stringify()
, so functions (such assanitize_properties
) are not supported.