본문으로 건너뛰기
버전: 3.0.0-rc.1

📦 plugin-google-analytics

The default Google Analytics plugin. It is a JavaScript library for measuring how users interact with your website in the production build. If you are using Google Analytics 4 you might need to consider using plugin-google-gtag instead.

Deprecated

This plugin is deprecated, and will become useless on July 1, 2023.

Google is moving away from Universal Analytics.

If you are still using this plugin with a UA-* tracking id, you should create a Google Analytics 4 account as soon as possible, and use @docusaurus/plugin-google-gtag instead of this plugin. More details here.

production only

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

Installation

npm install --save @docusaurus/plugin-google-analytics

If you use the preset @docusaurus/preset-classic, you don't need to install this plugin as a dependency.

여러분은 프리셋 옵션을 사용해 플러그인을 설정할 수 있습니다.

Configuration

설정할 수 있는 필드

옵션명타입기본값설명
trackingIDstringRequired애널리틱스 서비스의 추적 ID
anonymizeIPbooleanfalse요청을 보낼 때 IP를 익명화할지 여부

Example configuration

프리셋 옵션이나 플러그인 옵션에서 플러그인을 설정할 수 있습니다.

대부분의 도큐사우루스 사용자는 프리셋 옵션을 사용해 플러그인을 설정합니다.

If you use a preset, configure this plugin through the preset options:

docusaurus.config.js
module.exports = {
presets: [
[
'@docusaurus/preset-classic',
{
googleAnalytics: {
trackingID: 'UA-141789564-1',
anonymizeIP: true,
},
},
],
],
};