Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -122,31 +122,32 @@
crossorigin="anonymous"
></script>
<script
src="https://browser.sentry-cdn.com/7.113.0/bundle.tracing.replay.min.js"
integrity="sha384-wXgzLdc+RJ2eAiFpbvC5qUGzPUApNnMOI/DBvb1hSu8Zo4J/7NkxmP4DvBmNvWbQ"
src="https://browser.sentry-cdn.com/10.32.1/bundle.tracing.replay.min.js"
integrity="sha384-s+BQx+x7H3WSg8yxXYpSU50E6bL5JlJPzwIBPfSB0kXLFbgPIIwYZSgg68cUA2t4"
crossorigin="anonymous"
></script>

<script
src="https://browser.sentry-cdn.com/7.113.0/captureconsole.min.js"
integrity="sha384-H94VNEVI1G7X5bbKxVSFigZ//BDP5XFYQrGnxeivk1WgakI45En7H9m2DSeHmcmY"
src="https://browser.sentry-cdn.com/10.32.1/captureconsole.min.js"
integrity="sha384-n1EDDTBm8n6jrDs8cT8XGEK4TKzeefAwaBC8N9NYi/olGXl3qkmV2ISKdYjuskDp"
crossorigin="anonymous"
></script>
<script>
Sentry.init({
dsn: "https://c74a8d7e001f45c8bb4ebfa5a1e92664@o1185775.ingest.sentry.io/6600431",
// @AlexJSully when updating the package version number in package.json, update the version number here as well.
dsn: "https://c74a8d7e001f45c8bb4ebfa5a1e92664@o1185775.ingest.us.sentry.io/6600431",
// When updating the package version number in package.json, update the version number here as well.
release: "small-dev-talk@1.3.4",

integrations: [
new Sentry.BrowserTracing(),
new Sentry.Integrations.CaptureConsole({
levels: ["error"],
}),
],
integrations: [Sentry.browserTracingIntegration(), Sentry.replayIntegration()],

// Enable logs to be sent to Sentry
enableLogs: true,

Comment thread
AlexJSully marked this conversation as resolved.
// We recommend adjusting this value in production, or using tracesSampler for finer control
tracesSampleRate: 1.0,

// Capture Replay for 10% of all sessions,
// plus for 100% of sessions with an error
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1.0,
});

Sentry.configureScope((scope) => {
Expand Down
Loading