I am running into an issue when running npm run serve that is causing the breakpoints to fail - they are simply ignored. This is happening in Chrome on Win7, but I am seeing on the webpack issues board that it is on several OS/Browser combos when using cheap-module-eval-source-map.
My fix for now is:
./conf/webpack.conf.js
Orig:
devtool: 'cheap-module-eval-source-map
I am running into an issue when running
npm run serve
that is causing the breakpoints to fail - they are simply ignored. This is happening in Chrome on Win7, but I am seeing on thewebpack
issues board that it is on several OS/Browser combos when usingcheap-module-eval-source-map
.My fix for now is:
./conf/webpack.conf.js
Orig:devtool: 'cheap-module-eval-source-map
Change:
devtool: 'cheap-source-map'
Is there a better proposed fix?