I have created a Webpack build which works fine for me - it has a dev-server which I use for hot-reloading, and a production express server that runs a template html file and integrates the bundle.js
file.
This is all great, except when I'm working in my dev-server, the console gives me error messages like this:
Uncaught Error: Expected the reducer to be a function.(…) bundle.js:36329
It references bundle.js
as the source of the error, not the component I am working in, which makes it very difficult to track down the source of the error.
I know as far as the console is aware it is the bundle.js
file that contains the error, but how can I get the console to log the pre-bundle code? (e.g. Component.js
)
Thanks in advance.