Got it running with sentry and plausible and stuff. Auth seems good

This commit is contained in:
2025-08-28 15:28:28 -05:00
parent b672470bc4
commit 44d2ba3c5e
28 changed files with 1026 additions and 331 deletions

9
sentry.server.config.ts Normal file
View File

@@ -0,0 +1,9 @@
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from '@sentry/nextjs';
import './src/env.js';
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
tracesSampleRate: 1,
debug: false,
});