We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since we have a Sentry Pinia plugin, the Nuxt SDK has to inject the Sentry Pinia plugin to the Sentry Nuxt module
The text was updated successfully, but these errors were encountered:
feat(nuxt): Add Sentry Pinia plugin (#14047)
7b815bf
closes #14039 By adding `trackPinia`, the Pinia store is monitored with Sentry. ```js Sentry.init({ dsn: useRuntimeConfig().public.sentry.dsn, trackPinia: true }); ``` or with custom options: ```js Sentry.init({ dsn: useRuntimeConfig().public.sentry.dsn, trackPinia: { actionTransformer: action => `Transformed: ${action}`, }, }); ```
5a5b512
closes #14039 By adding `trackPinia`, the Pinia store is monitored with Sentry. ```js Sentry.init({ dsn: useRuntimeConfig().public.sentry.dsn, trackPinia: true }); ``` or with custom options: ```js Sentry.init({ dsn: useRuntimeConfig().public.sentry.dsn, trackPinia: { actionTransformer: action => `Transformed: ${action}`, }, }); ``` (cherry picked from commit 7b815bf)
s1gr1d
Successfully merging a pull request may close this issue.
Description
Since we have a Sentry Pinia plugin, the Nuxt SDK has to inject the Sentry Pinia plugin to the Sentry Nuxt module
The text was updated successfully, but these errors were encountered: