Hi, I’m a bit struggling with making “Code mappings” work. The problem is the following:
- each release of my app creates an artifact tagged with a readable release name, e.g.
1.0.0
- artifact sources are mapped to actual locations, e.g.
https://cdn.com/known-part/some-unreadable-release-hash/static/js/foo.js
What I need is to map https://cdn.com/known-part/*/static/js
to /src
which is a path in my code repo.
Currently, source-maps work correctly for me (I see readable stack-traces in issues), but not the code mapping to actual files in my repo.
How can I do it? Thanks in advance.