๐ฆ plugin-google-gtag
The default Global Site Tag (gtag.js) plugin. ์ฌ๋ฌ๋ถ์ด ๊ตฌ๊ธ ์ ๋๋ฆฌํฑ์ค, ๊ตฌ๊ธ ๊ด๊ณ , ๊ตฌ๊ธ ๋ง์ผํ ํ๋ซํผ์ ์ด๋ฒคํธ ๋ฐ์ดํฐ๋ฅผ ๋ณด๋ผ ์ ์๊ฒ ํ๋ ์๋ฐ์คํฌ๋ฆฝํธ ํํน ํ๋ ์์ํฌ์ API์ ๋๋ค. ์ฌ๊ธฐ์์๋ ๊ตฌ๊ธ ์ ๋๋ฆฌํฑ์ค๋ฅผ ์ํ ์ ์ญ ์ฌ์ดํธ ํ๊ทธ๋ฅผ ํ์ฑํํ๊ธฐ ์ํด ๋ํ์ฌ์ฐ๋ฃจํธ ์ฌ์ดํธ ์ค์ ์ ์ด๋ป๊ฒ ํด์ผ ํ๋์ง ์ค๋ช ํฉ๋๋ค.
You can use Google's Tag Assistant tool to check if your gtag is set up correctly!
This plugin is always inactive in development and only active in production to avoid polluting the analytics statistics.
Installationโ
- npm
- Yarn
- pnpm
npm install --save @docusaurus/plugin-google-gtag
yarn add @docusaurus/plugin-google-gtag
pnpm add @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.
Configurationโ
์ค์ ํ ์ ์๋ ํ๋
์ต์ ๋ช | ํ์ | ๊ธฐ๋ณธ๊ฐ | ์ค๋ช |
---|---|---|---|
trackingID | string | string[] | Required | gtag ์๋น์ค์ ์ถ์ ID ์ฌ๋ฌ ๊ฐ์ ID๋ฅผ ์ฌ์ฉํ ์ ์์ต๋๋ค. |
anonymizeIP | boolean | false | ์์ฒญ์ ๋ณด๋ผ ๋ IP๋ฅผ ์ต๋ช ํํ ์ง ์ฌ๋ถ |
Example configurationโ
ํ๋ฆฌ์ ์ต์ ์ด๋ ํ๋ฌ๊ทธ์ธ ์ต์ ์์ ํ๋ฌ๊ทธ์ธ์ ์ค์ ํ ์ ์์ต๋๋ค.
๋๋ถ๋ถ์ ๋ํ์ฌ์ฐ๋ฃจ์ค ์ฌ์ฉ์๋ ํ๋ฆฌ์ ์ต์ ์ ์ฌ์ฉํด ํ๋ฌ๊ทธ์ธ์ ์ค์ ํฉ๋๋ค.
- ํ๋ฆฌ์ ์ต์
- ํ๋ฌ๊ทธ์ธ ์ต์
ํ๋ฆฌ์ ์ ์ฌ์ฉํ๋ ๊ฒฝ์ฐ ํ๋ฆฌ์ ์ต์ ๋ฅผ ํตํด ํ๋ฌ๊ทธ์ธ์ ๊ตฌ์ฑํฉ๋๋ค.
module.exports = {
presets: [
[
'@docusaurus/preset-classic',
{
gtag: {
trackingID: 'G-999X9XX9XX',
anonymizeIP: true,
},
},
],
],
};
๋ ๋ฆฝ์ ์ผ๋ก ์คํ๋๋ ํ๋ฌ๊ทธ์ธ์ ์ฌ์ฉํ๋ ๊ฒฝ์ฐ์๋ ํ๋ฌ๊ทธ์ธ์ ๋ํ ์ต์ ์ ์ง์ ์ค์ ํ ์ ์์ต๋๋ค.
module.exports = {
plugins: [
[
'@docusaurus/plugin-google-gtag',
{
trackingID: 'G-999X9XX9XX',
anonymizeIP: true,
},
],
],
};