Source maps connect minified/bundled code back to original source:
// In bundler config
devtool: 'source-map'
With source maps, DevTools shows your original files even when the browser runs bundled code. Breakpoints work on your source, not the minified version.