This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/website/src/sentry.jsx

9 lines
263 B
React
Raw Normal View History

import * as Sentry from "@sentry/react";
import { Integrations } from "@sentry/tracing";
Sentry.init({
dsn: "https://339d36db58e6476aa0430aaff4e0610c@sentry.beryju.org/9",
integrations: [new Integrations.BrowserTracing()],
tracesSampleRate: 0.6,
});