diff --git a/docs/platforms/javascript/common/troubleshooting/index.mdx b/docs/platforms/javascript/common/troubleshooting/index.mdx index 52147046439185..633e5d98a24e76 100644 --- a/docs/platforms/javascript/common/troubleshooting/index.mdx +++ b/docs/platforms/javascript/common/troubleshooting/index.mdx @@ -504,10 +504,11 @@ Learn more about fixing these caching issues in the Nuxt builds the server-side Nitro application as ES Modules, which introduces limitations for server-side tracing during development. - Currently, trace collection is only supported when running the built application, not in development mode (`nuxt dev`). - To collect traces, build your project and run the production build output. Currently, trace collection is only supported when building and running the application. Development mode (`nuxt dev`) is currently not supported. + When running the build output, Sentry needs to be initialized before running the rest of the application. This is done automatically, but might not work for your use case. + Read more about this in installation methods. + --- We are currently investigating an issue where the server-side is not correctly initialized with a recent update of Nitro (the server-side toolkit in Nuxt). diff --git a/platform-includes/getting-started-next-steps/javascript.nuxt.mdx b/platform-includes/getting-started-next-steps/javascript.nuxt.mdx index e95ae48e4656f1..a7bc3938bc4411 100644 --- a/platform-includes/getting-started-next-steps/javascript.nuxt.mdx +++ b/platform-includes/getting-started-next-steps/javascript.nuxt.mdx @@ -1,4 +1,5 @@ ## Next Steps - Track your Vue Components or your Pinia store by [adding support for client features](/platforms/javascript/guides/nuxt/features/) -- In case you experience any issues during setup or startup, check out Troubleshooting. +- In case you experience any issues during setup or startup, check out Troubleshooting +or read through the different installation methods. diff --git a/platform-includes/getting-started-verify/javascript.nuxt.mdx b/platform-includes/getting-started-verify/javascript.nuxt.mdx index 9dd2a2082be9d0..d1a917fe678e43 100644 --- a/platform-includes/getting-started-verify/javascript.nuxt.mdx +++ b/platform-includes/getting-started-verify/javascript.nuxt.mdx @@ -52,5 +52,6 @@ export default defineEventHandler(event => { node .output/server/index.mjs ``` - In case you experience any issues with the server-side setup, check out Troubleshooting. + In case you experience any issues with the server-side setup, check out Troubleshooting + or read through the different installation methods.