Browse Source

test matomo

Olivier Massot 7 months ago
parent
commit
f0cec01efa
1 changed files with 4 additions and 4 deletions
  1. 4 4
      plugins/matomo.client.ts

+ 4 - 4
plugins/matomo.client.ts

@@ -7,13 +7,13 @@ export default defineNuxtPlugin((nuxtApp) => {
   //   siteId: 196,
   // })
 
+  const OPENTALENT_PROD_ID = 196
+  const OPENTALENT_TEST5_ID = 196
+
   nuxtApp.vueApp.use(VueMatomo, {
     host: 'https://stats.2iopenservice.com/',
-    siteId: 196
+    siteId: OPENTALENT_TEST5_ID
   });
 
   window._paq.push(['trackPageView']); // Pour suivre les visites sur vos pages
 })
-
-
-