Replies: 2 comments 3 replies
-
Hi @a14m did you solved the issue ? |
Beta Was this translation helpful? Give feedback.
1 reply
-
I do have a problem with nodejs sourcemaps, client works fine. @a14m any luck with this issue? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a simple setup for a project that imitates the Next JS sentry (simple) example
The problem is without sentry
Enable JavaScript source fetching
feature on, I cannot get the source maps to report correctly to sentryexample:
with the
Enable JavaScript source fetching
it shows correctlyexample (of the same error):
Here is the configuration files used:
The
src/pages/_app.tsx
andsrc/pages/_error.tsx
follow the example mentioned in the repo.The source maps are uploaded to sentry during CI build process
Using this script (after
next build
andnext export
)I can verify that the source maps are uploaded to sentry (for each build -example log below-)
Is there anyway to get the source maps to work with sentry (without the
Enable JavaScript source fetching
and without leaving the source map publicly available on the server)?Beta Was this translation helpful? Give feedback.
All reactions