📦 plugin-google-gtag
O plug-in Tag global do site (gtag.js) é padrão. It is a JavaScript tagging framework and API that allows you to send event data to Google Analytics, Google Ads, and Google Marketing Platform. Essa seção descreve como configurar um site do Docusaurus para habilitar a tag global do site do Google Analytics.
tip
Você pode usar a ferramenta Assistente de Tags do Google para verificar se sua tag está configurada corretamente!
production only
This plugin is always inactive in development and only active in production to avoid polluting the analytics statistics.
Instalação
- npm
- Yarn
npm install --save @docusaurus/plugin-google-gtag
yarn add @docusaurus/plugin-google-gtag
tip
If you use the preset @docusaurus/preset-classic
, you don't need to install this plugin as a dependency.
You can configure this plugin through the preset options.
Configuração
Campos aceitos:
Name | Type | Default | Description |
---|---|---|---|
trackingID | string | Required | The tracking ID of your gtag service. |
anonymizeIP | boolean | false | Whether the IP should be anonymized when sending requests. |
Configuração de exemplo
You can configure this plugin through preset options or plugin options.
tip
Most Docusaurus users configure this plugin through the preset options.
- Preset Options
- Plugin Options
If you use a preset, configure this plugin through the preset options:
module.exports = {
presets: [
[
'@docusaurus/preset-classic',
{
gtag: {
trackingID: 'G-226F0LR9KE',
anonymizeIP: true,
},
},
],
],
};
If you are using a standalone plugin, provide options directly to the plugin:
module.exports = {
plugins: [
[
'@docusaurus/plugin-google-gtag',
{
trackingID: 'G-226F0LR9KE',
anonymizeIP: true,
},
],
],
};