feat: sentry bug reports and integration (glitchtip)

This commit is contained in:
2025-07-09 15:45:35 +02:00
parent cb069a45be
commit 99cd4098da
4 changed files with 152 additions and 2 deletions

View File

@ -2,6 +2,17 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import * as Sentry from "@sentry/react";
Sentry.init({
dsn: "https://2851a11b9f1b4715b389979628da322f@glitchtip.yandrik.dev/3",
integrations: [
Sentry.feedbackIntegration({
// Additional SDK configuration goes in here, for example:
colorScheme: "system",
}),
],
});
const rootElement = document.getElementById('root');
if (!rootElement) {