diff --git a/src/config/matomo.tsx b/src/config/matomo.tsx index f235a0c0..ee8f2ca8 100644 --- a/src/config/matomo.tsx +++ b/src/config/matomo.tsx @@ -9,14 +9,19 @@ const getMatomoInstance = () => { urlBase: 'link.to.domain', } - switch (process.env.REACT_APP_CLIENT) { - case 'instat': - matomoInstance = { - ...matomoInstance, - siteId: 1, - urlBase: PAGES.matomoInstatBaseUrl, - } - break + // switch (process.env.REACT_APP_CLIENT) { + // case 'instat': + // matomoInstance = { + // ...matomoInstance, + // siteId: 1, + // urlBase: PAGES.matomoInstatBaseUrl, + // } + // break + // } + matomoInstance = { + ...matomoInstance, + siteId: 1, + urlBase: PAGES.matomoInstatBaseUrl, } return createInstance(matomoInstance)