My problem is simple.
I just want to make VS Code\'s debugger work with webpack-dev-server without ignoring my breakpoints.
Now, webpack-dev-server serves the bund
Old thread, but it still comes up in searches...
It feels like turning on "writing the generated code to disk" might be the solution here: As per https://webpack.js.org/configuration/dev-server/#devserverwritetodisk-, add this to webpack.config.js:
module.exports = {
//...
devServer: {
writeToDisk: true
}
};