Hi,
I have a problem with javascript .map files loaded to sentry.
When I make the build of my front-end code using GruntJs, I upload the javascript .map files to sentry using “grunt-sentry-files”. It works well and a new release is generated on Sentry but if sentry catches an error on my website, the source code of the new issue is minified so not understandable.
My doubt is:
when I upload map files to sentry, I generate a “releaseId” in the following way
‘build-’ + (new Date()).getTime() —> so the result could be for example “build-1526932585225”
Should I use the same “releaseId” also when I initialize Sentry script in my website to make it match correctly? Which is the releaseId parameter to fill in sentry javascript script? Or what could be the problem?
Thanks in advance