Skip to content

Commit

Permalink
Merge pull request #934 from cultuurnet/PK-282-fix-call-to-monitoring
Browse files Browse the repository at this point in the history
PK-282 - Fix call to monitoring
  • Loading branch information
simon-debruijn authored Oct 17, 2024
2 parents 7468b0f + e78977a commit f9f659e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sentry.client.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ Sentry.init({
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,

transportOptions: {
fetchOptions: {
credentials: 'omit',
},
},

replaysOnErrorSampleRate: 1.0,

// This sets the sample rate to be 10%. You may want this to be 100% while
Expand Down
6 changes: 6 additions & 0 deletions sentry.edge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,10 @@ Sentry.init({

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,

transportOptions: {
fetchOptions: {
credentials: 'omit',
},
},
});
6 changes: 6 additions & 0 deletions sentry.server.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@ Sentry.init({

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,

transportOptions: {
fetchOptions: {
credentials: 'omit',
},
},
});

0 comments on commit f9f659e

Please sign in to comment.