Skip to main content
Version: 2.0.0-alpha.75

πŸ“¦ plugin-google-gtag

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 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#

docusaurus.config.js
module.exports = {  plugins: ['@docusaurus/plugin-google-gtag'],  themeConfig: {    gtag: {      trackingID: 'UA-141789564-1',      // Optional fields.      anonymizeIP: true, // Should IPs be anonymized?    },  },};