The default Global Site Tag (gtag.js) plugin. It is a JavaScript tagging framework and API that allows you to send event data to Google Analytics, Google Ads, and Google Marketing Platform. This section describes how to configure a Docusaurus site to enable global site tag for Google Analytics.
Installation
- npm
- Yarn
npm install --save @docusaurus/plugin-google-gtag
tip
If you have installed
@docusaurus/preset-classic
, you don't need to install it as a dependency.Configuration
module.exports = {plugins: ['@docusaurus/plugin-google-gtag'],themeConfig: {gtag: {trackingID: 'UA-141789564-1',// Optional fields.anonymizeIP: true, // Should IPs be anonymized?},},};