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
Jens Langhammer 983747b13b website: add sentry
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
2021-07-19 21:50:56 +02:00

9 lines
263 B
JavaScript

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,
});