I am wondering if someone could help me understand how I would use this with React. I have an app that I created using create-react-app and have now enabled source maps in my build process. For me this results in 3 files that are generated
I have introduced an error into my built app and have gotten a stack trace which locates this error to line 2 in main.a7bcdc4c.chunk.js.map at column 4032779.
Looking at the docs I expected that if I pass this information to the tool in the form of:
Hi,
I am wondering if someone could help me understand how I would use this with React. I have an app that I created using
create-react-app
and have now enabled source maps in my build process. For me this results in 3 files that are generatedI have introduced an error into my built app and have gotten a stack trace which locates this error to line 2 in
main.a7bcdc4c.chunk.js.map
at column 4032779.Looking at the docs I expected that if I pass this information to the tool in the form of:
That I would see the position in the original src, however the result is just
{ source: null, line: null, column: null, name: null }
Any tips on what I am doing incorrectly would be appreciated
Thanks