Compare commits

..

No commits in common. "b55917d4ebe1682ff201ca6c9a834171e4a5c137" and "d2ba8cb90f7dd7028237a2863945357a001548fa" have entirely different histories.

2 changed files with 6 additions and 6 deletions

View File

@ -39,10 +39,10 @@
}, },
"type": "module", "type": "module",
"dependencies": { "dependencies": {
"@analytics/google-analytics": "^1.0.7",
"@segment/snippet": "^4.16.2",
"analytics": "^0.8.9", "analytics": "^0.8.9",
"analytics-plugin-do-not-track": "^0.1.5", "analytics-plugin-do-not-track": "^0.1.5",
"@analytics/google-analytics": "^1.0.7",
"@segment/snippet": "^4.16.2",
"luxon": "^3.3.0" "luxon": "^3.3.0"
} }
} }

View File

@ -4,16 +4,16 @@
import Analytics from 'analytics'; import Analytics from 'analytics';
// import doNotTrack from 'analytics-plugin-do-not-track'; // import doNotTrack from 'analytics-plugin-do-not-track';
// import googleAnalytics from '@analytics/google-analytics'; import googleAnalytics from '@analytics/google-analytics';
const analytics = Analytics({ const analytics = Analytics({
app: 'Barretthousen - Web Client', app: 'Barretthousen - Web Client',
version: '1.0', version: '1.0',
debug: process.env.NODE_ENV !== 'production', debug: process.env.NODE_ENV !== 'production',
plugins: [ plugins: [
// googleAnalytics({ googleAnalytics({
// measurementIds: ['UA-143763293-1'] measurementIds: ['UA-143763293-1']
// }) })
// doNotTrack() // doNotTrack()
] ]
}); });