@sentry/nextjs: next.config.js wraps the build with withSentryConfig; src/instrumentation.ts and src/instrumentation-client.ts initialize Sentry; sentry.server.config.ts, sentry.edge.config.ts, and src/app/global-error.tsx participate in server, edge, and client error reporting.@sentry/react-native (or other @sentry/* packages) in the scanned package.json / tree; the app uses Expo Router with main set to expo-router/entry, so early initialization matters for capturing native-layer crashes as well as JS.src/index.ts (e.g. import './instrument.js', @sentry/node, Sentry.setupExpressErrorHandler(app), and a sample /debug-sentry route), so the Express process is not currently sending events from that entrypoint as committed.Attik Mobile
@sentry/react-native (or the Expo-supported path Sentry documents for the current SDK major) with production and preview builds; wrap the root app surface so unhandled JS errors are captured.Attik Backend
@sentry/node in the Express pipeline: uncomment or replace patterns in src/index.ts, place request and error middleware in the correct order relative to app.js and existing handlers, and align with any instrument.js (or successor) bootstrap the team chooses.Attik Frontend (reference only)
attik-frontend/next.config.js, attik-frontend/src/instrumentation.ts, attik-frontend/src/instrumentation-client.ts, attik-frontend/sentry.server.config.ts, attik-frontend/sentry.edge.config.ts, attik-frontend/src/app/global-error.tsxattik-backend/src/index.tsattik-mobile/package.json, attik-mobile/eas/ (build / env)Please authenticate to join the conversation.
Completed
Main App
4 months ago
Linear
Get notified by email when there are changes.
Completed
Main App
4 months ago
Linear
Get notified by email when there are changes.