DEV Community

Discussion on: Anatomy of a JavaScript Error

Collapse
 
surajrao profile image
Suraj Rao • Edited

Interesting article. Your link for anatomy of source maps is 404 ing.

It’s likely that you’ll minify your JavaScript code, and when you do, the lines in the stacktrace will not match up with the original source files. In order to find the original source, we use source maps to look up and translate the stacktrace. Learn more about how source maps work in our other blog in this series the Anatomy of source maps.

Anyone else who comes across it, The working link is here

Collapse
 
wordofchristian profile image
Christian Schlensker

Thanks