diff options
author | 2021-08-20 22:47:00 -0700 | |
---|---|---|
committer | 2021-08-20 22:48:32 -0700 | |
commit | d51e0f4fef5a19eb82c2e02c41578bd908b39720 (patch) | |
tree | d9991c15400a56e4f97963c7df6148d3dc09e2e8 /www/src | |
parent | f235c84972faa2c71b1e81473a02567063e901ca (diff) | |
download | astro-d51e0f4fef5a19eb82c2e02c41578bd908b39720.tar.gz astro-d51e0f4fef5a19eb82c2e02c41578bd908b39720.tar.zst astro-d51e0f4fef5a19eb82c2e02c41578bd908b39720.zip |
update universal id
Diffstat (limited to 'www/src')
-rw-r--r-- | www/src/components/GoogleAnalytics.astro | 7 | ||||
-rw-r--r-- | www/src/pages/blog/introducing-astro.astro | 5 | ||||
-rw-r--r-- | www/src/pages/index.astro | 5 |
3 files changed, 7 insertions, 10 deletions
diff --git a/www/src/components/GoogleAnalytics.astro b/www/src/components/GoogleAnalytics.astro index bdc8fedda..8790b2b18 100644 --- a/www/src/components/GoogleAnalytics.astro +++ b/www/src/components/GoogleAnalytics.astro @@ -1,9 +1,8 @@ <!-- Global site tag (gtag.js) - Google Analytics --> -<script async src="https://www.googletagmanager.com/gtag/js?id=G-TEL60V1WM9"></script> +<script async src="https://www.googletagmanager.com/gtag/js?id=UA-130280175-15"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); - - gtag('config', 'G-TEL60V1WM9'); -</script>
\ No newline at end of file + gtag('config', 'UA-130280175-15'); +</script> diff --git a/www/src/pages/blog/introducing-astro.astro b/www/src/pages/blog/introducing-astro.astro index a9eb740ff..8cf6a9eb6 100644 --- a/www/src/pages/blog/introducing-astro.astro +++ b/www/src/pages/blog/introducing-astro.astro @@ -117,13 +117,12 @@ npm run dev </BlogPost> <!-- Global site tag (gtag.js) - Google Analytics --> - <script async src="https://www.googletagmanager.com/gtag/js?id=G-TEL60V1WM9"></script> + <script async src="https://www.googletagmanager.com/gtag/js?id=UA-130280175-15"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); - - gtag('config', 'G-TEL60V1WM9'); + gtag('config', 'UA-130280175-15'); </script> </body> </html> diff --git a/www/src/pages/index.astro b/www/src/pages/index.astro index 88fa363d1..ef31a9606 100644 --- a/www/src/pages/index.astro +++ b/www/src/pages/index.astro @@ -104,13 +104,12 @@ let lang = 'en'; </script> <!-- Global site tag (gtag.js) - Google Analytics --> - <script async src="https://www.googletagmanager.com/gtag/js?id=G-TEL60V1WM9"></script> + <script async src="https://www.googletagmanager.com/gtag/js?id=UA-130280175-15"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); - - gtag('config', 'G-TEL60V1WM9'); + gtag('config', 'UA-130280175-15'); </script> </body> </html> |