This commit is contained in:
2026-05-27 10:30:23 -04:00
parent 5214412fff
commit 1e1773c186
48 changed files with 5351 additions and 160 deletions

View File

@@ -1,4 +1,14 @@
// @refresh reload
import * as Sentry from "@sentry/solidstart";
import { mount, StartClient } from "@solidjs/start/client";
Sentry.init({
dsn: import.meta.env.VITE_SENTRY_DSN,
enabled: import.meta.env.PROD,
sendDefaultPii: true,
tracesSampleRate: import.meta.env.PROD ? 0.1 : 1.0,
replaysSessionSampleRate: import.meta.env.PROD ? 0.1 : 0,
replaysOnErrorSampleRate: import.meta.env.PROD ? 1.0 : 0,
});
mount(() => <StartClient />, document.getElementById("app")!);