Skip to content

Commit

Permalink
fix: ajoute en config l'exclusion de certaines URLs pour Matomo (#4561)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shamzic authored Aug 23, 2024
1 parent ec76d2d commit 10f1c30
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,20 @@ if (navigator.cookieEnabled && process.env?.VITE_MATOMO_URL) {
trackerFileName: "piwik",
siteId: process.env.VITE_MATOMO_ID,
router: router,
preInitActions: [
[
"setExcludedQueryParams",
[
"token",
"situationId",
"simulationId",
"_ga",
"surveyEmail",
"code",
"state",
],
],
],
})
}

Expand Down

0 comments on commit 10f1c30

Please sign in to comment.