Last active
January 13, 2020 03:12
-
-
Save edwindelbosque/cb4be312e0d02a42a633c8711b1fa19d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
resolve: `gatsby-plugin-google-analytics`, | |
options: { | |
// The property ID; the tracking code won't be generated without it | |
trackingId: "YOUR_GOOGLE_ANALYTICS_TRACKING_ID", | |
// Defines where to place the tracking script - `true` in the head and `false` in the body | |
head: false, | |
// Setting this parameter is optional | |
anonymize: true, | |
// Setting this parameter is also optional | |
respectDNT: true, | |
// Avoids sending pageview hits from custom paths | |
exclude: ["/preview/**", "/do-not-track/me/too/"], | |
// Delays sending pageview hits on route update (in milliseconds) | |
pageTransitionDelay: 0, | |
// Enables Google Optimize using your container Id | |
optimizeId: "YOUR_GOOGLE_OPTIMIZE_TRACKING_ID", | |
// Enables Google Optimize Experiment ID | |
experimentId: "YOUR_GOOGLE_EXPERIMENT_ID", | |
// Set Variation ID. 0 for original 1,2,3.... | |
variationId: "YOUR_GOOGLE_OPTIMIZE_VARIATION_ID", | |
// Any additional optional fields | |
sampleRate: 5, | |
siteSpeedSampleRate: 10, | |
cookieDomain: "example.com", | |
}, | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment