From af185e1d6d5da0ced0113e32c3a5ef6a1c0317ad Mon Sep 17 00:00:00 2001 From: Soulaimane Yahya Date: Sat, 25 May 2024 02:49:53 +0100 Subject: [PATCH] fixing google-analytics --- src/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.js b/src/main.js index 2f5e6fa..67e2f13 100755 --- a/src/main.js +++ b/src/main.js @@ -11,14 +11,14 @@ export default function (Vue, { head, isClient }) { if (isClient) { const script = document.createElement('script'); script.async = true; - script.src = `https://www.googletagmanager.com/gtag/js?id=G-RQWETTJBTY`; + script.src = `https://www.googletagmanager.com/gtag/js?id=G-8HL91MW1S3`; document.head.appendChild(script); script.onload = () => { window.dataLayer = window.dataLayer || []; function gtag(){ dataLayer.push(arguments); } gtag('js', new Date()); - gtag('config', 'G-RQWETTJBTY'); + gtag('config', 'G-8HL91MW1S3'); }; }