Add Antlytics to Docusaurus
Prerequisites
- An Antlytics account (sign up free)
- Your tracking ID from Settings → Tracking Snippet in your Antlytics dashboard
Install the snippet
Add the hosted tracker to every page using the headTags option in docusaurus.config.ts:
// docusaurus.config.ts
import type { Config } from "@docusaurus/types";
const config: Config = {
// ... your existing config ...
headTags: [
{
tagName: "script",
attributes: {
defer: "true",
src: "https://www.antlytics.com/tracker.js",
"data-tracking-id": "YOUR-SITE-ID",
"data-api-host": "https://www.antlytics.com",
},
},
],
};
export default config;
Note: Replace
YOUR-SITE-IDwith the tracking ID from your Antlytics dashboard.
If you use docusaurus.config.js instead of TypeScript, the same headTags option applies — just remove the type import.
Verify installation
- Visit your site in a browser.
- Open your Antlytics dashboard → Overview.
- Your visit should appear within a few seconds.
If data does not appear after a few minutes, check the troubleshooting guide.
Optional: First-party proxy
To avoid ad blockers, set up a first-party proxy on your own domain.
Need help?
Email support@antlytics.com with your site ID and page URL.
Something missing? Get in touch and we will update these docs.