-
Notifications
You must be signed in to change notification settings - Fork 0
/
sentry.client.config.ts
27 lines (26 loc) · 1.36 KB
/
sentry.client.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import * as Sentry from "@sentry/nuxt";
Sentry.init({
dsn: process.env.PUBLIC_SENTRY_DSN || "https://[email protected]/4507874577809408",
debug: true,
integrations: [
Sentry.browserTracingIntegration(),
Sentry.replayIntegration(),
Sentry.feedbackIntegration({
// Additional SDK configuration goes in here, for example:
colorScheme: "system",
triggerLabel: "Contact me",
triggerAriaLabel: "Contact me",
formTitle: "Contact me",
submitButtonLabel: "Contact me",
messagePlaceholder: "This is honestly just me dogfooding some Sentry features. I may not see this.",
successMessageText: "Thank you for your message.",
}),
],
// Tracing
tracesSampleRate: 1.0, // Capture 100% of the transactions
// Set 'tracePropagationTargets' to control for which URLs distributed tracing should be enabled
tracePropagationTargets: ["localhost", /^https:\/\/yourserver\.io\/api/],
// Session Replay
replaysSessionSampleRate: 0.1, // This sets the sample rate at 10%. You may want to change it to 100% while in development and then sample at a lower rate in production.
replaysOnErrorSampleRate: 1.0, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.
});