gatsbyで作ったブログをGA4(Google Analytics 4)に対応させる
GA4 対応パッケージのインストール
以前はgatsby-plugin-google-analytics
を使っていたけど、GA4(Google Analytics 4)に対応したgatsby-plugin-gtag
に変更する。
npm install gatsby-plugin-gtag
gatsby-config.js の編集
gatsby-plugin-google-analytics
の設定を削除して、gatsby-plugin-gtag
に書き換える。
gatsby-plugin-google-analytics
の設定は不要なので削除する。
{
"resolve": `gatsby-plugin-google-analytics`,
"options": {
"trackingId": `UA-xxxxxxxx-x`
}
}
gatsby-plugin-gtag
の設定。G-xxxxxxxxxx
の部分を個人ごとの値に変更する。
{
"resolve": `gatsby-plugin-gtag`,
"options": {
"trackingId": `G-xxxxxxxxxx`,
"head": false
}
}
gatsby-plugin-google-analytics を削除
gatsby-plugin-google-analytics
は使用しなくなったので削除する。
npm uninstall gatsby-plugin-google-analytics
以上。