Unable to set desired breakpoints in Chrome DevTools? Unable to set desired breakpoints in Chrome DevTools? google-chrome google-chrome

Unable to set desired breakpoints in Chrome DevTools?


I figured it out! I'm using Webpack to build up my modules into a bundle.js file. It also produces a bundle.js.map file so I can see the code in the Chrome DevTools, but I guess because it's an expanded representation of what bundle.js is, I can't correctly setup break points.

Update, just found this: How to build minified and uncompressed bundle with webpack?

Now I have a Production and Development config option to use, so I can debug correctly using the un-minified version of my main bundle.js

enter image description here