Add Bugsink error tracking via @sentry/nuxt#398
Open
anbraten wants to merge 4 commits into
Open
Conversation
Integrates Bugsink (Sentry-compatible backend) for error tracking in the dashboard. Adds @sentry/nuxt module, client/server Sentry config files, SENTRY_DSN env var, and a Bugsink service to docker-compose for local dev. https://claude.ai/code/session_012L1NjoX471JAg8MFVvKrLm
typedProvide was called after await useFetch, crossing an async boundary where Vue's component instance may no longer be active. This caused typedInject in child pages to receive undefined during SSR, triggering the guard throw and a 500 error. Fix: start the fetch synchronously, call typedProvide with the reactive refs before any await, then await the fetch result so SSR still waits for data before rendering child pages. https://claude.ai/code/session_012L1NjoX471JAg8MFVvKrLm
No local instance needed; Bugsink runs externally and is configured via the SENTRY_DSN environment variable. https://claude.ai/code/session_012L1NjoX471JAg8MFVvKrLm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Integrates Bugsink (Sentry-compatible backend) for error tracking in the
dashboard. Adds @sentry/nuxt module, client/server Sentry config files,
SENTRY_DSN env var, and a Bugsink service to docker-compose for local dev.
https://claude.ai/code/session_012L1NjoX471JAg8MFVvKrLm