Skip to main content

📦 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. このセクションでは、Google Analytics のグローバルサイトタグ (gtag. js) を有効にする方法を説明します。

ヒント

Googleのタグアシスタント ツールを使用して、gtagが正しく設定されているかどうかを確認することができます。

production only

This plugin is always inactive in development and only active in production to avoid polluting the analytics statistics.

インストール

npm install --save @docusaurus/plugin-google-gtag
ヒント

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.

設定

Accepted fields:

名前TypeDefault説明
trackingIDstring | string[]RequiredThe tracking ID of your gtag service. It is possible to provide multiple ids.
anonymizeIPbooleanfalseWhether the IP should be anonymized when sending requests.

Example configuration

You can configure this plugin through preset options or plugin options.

ヒント

Most Docusaurus users configure this plugin through the preset options.

プリセットを使用する場合は、 設定オプション を介してこのプラグインを設定してください。

docusaurus.config.js
module.exports = {
presets: [
[
'@docusaurus/preset-classic',
{
gtag: {
trackingID: 'G-999X9XX9XX',
anonymizeIP: true,
},
},
],
],
};