Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 547 Bytes

File metadata and controls

17 lines (14 loc) · 547 Bytes
import * as Sentry from "@sentry/react";

Sentry.init({
  dsn: "___PUBLIC_DSN___",

  // This enables automatic instrumentation (highly recommended), but is not
  // necessary for purely manual usage.
  // If you only want to use manually, remove the BrowserTracing integration and add
  // Sentry.addTracingExtensions() above your Sentry.init() call.
  integrations: [new Sentry.BrowserTracing()],

  // We recommend adjusting this value in production, or using tracesSampler
  // for finer control
  tracesSampleRate: 1.0,
});