From 24e2fa8e166f5e2681b009c352d0588d400cafc9 Mon Sep 17 00:00:00 2001 From: John Reilly Date: Fri, 24 Dec 2021 07:36:08 +0000 Subject: [PATCH] docs: improve gtag documentation --- website/docs/api/plugins/plugin-google-gtag.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/api/plugins/plugin-google-gtag.md b/website/docs/api/plugins/plugin-google-gtag.md index 756dc83fd498..8050514fb3a5 100644 --- a/website/docs/api/plugins/plugin-google-gtag.md +++ b/website/docs/api/plugins/plugin-google-gtag.md @@ -52,7 +52,7 @@ Most Docusaurus users configure this plugin through the [preset options](#ex-con ```js const config = { - trackingID: 'UA-141789564-1', + trackingID: '141789564', anonymizeIP: true, }; ``` @@ -69,7 +69,7 @@ module.exports = { { // highlight-start gtag: { - trackingID: 'UA-141789564-1', + trackingID: '141789564', anonymizeIP: true, }, // highlight-end @@ -90,7 +90,7 @@ module.exports = { '@docusaurus/plugin-google-gtag', // highlight-start { - trackingID: 'UA-141789564-1', + trackingID: '141789564', anonymizeIP: true, }, // highlight-end