Should the sentry/nuxt version have an impact on the nuxt build command's output? #14064
Unanswered
francois-launchbase
asked this question in
Q&A
Replies: 2 comments
-
@s1gr1d seems like we also need to proxy |
Beta Was this translation helpful? Give feedback.
0 replies
-
In 8.34.0, a rollup plugin was introduced to initialize Sentry before the rest of the app is loaded. This changes the code in However, the function for firebase is currently not exported. #14086 will fix this. Thanks for reporting! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'd like to know if I'm even barking up the right tree. This stuff goes a bit above my head, but I think I found the cause (though I don't understand it).
After upgrading from
@sentry/nuxt 8.34.0
to@sentry/nuxt 8.35.0
I had an issue where my generated.output/server
no longer contained aserver
function which is used to serve SSR content. Downgrading back to8.34.0
reinstates that function.As an example, when running
nuxt build --preset=firebase
this is what.output/server/index.mjs
looked like before and after upgrading to8.35.0
..output/server/index.mjs (8.34.0)
.output/server/index.mjs (8.35.0)
Beta Was this translation helpful? Give feedback.
All reactions