change sizing slightly and add sentry

This commit is contained in:
Zoe
2026-02-12 17:32:51 -06:00
parent d29f95bacf
commit 32a4f7f95d
14 changed files with 519 additions and 156 deletions
+19
View File
@@ -0,0 +1,19 @@
import * as Sentry from "@sentry/nuxt";
Sentry.init({
dsn: "https://92168777a87a41a5b680c6d303ec6a20@o4510873545998336.ingest.us.sentry.io/4510873547309056",
// We recommend adjusting this value in production, or using tracesSampler
// for finer control
tracesSampleRate: 1.0,
// Enable logs to be sent to Sentry
enableLogs: true,
// Enable sending of user PII (Personally Identifiable Information)
// https://docs.sentry.io/platforms/javascript/guides/nuxt/configuration/options/#sendDefaultPii
sendDefaultPii: true,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
});