[Vuejs]-Debugging NativeScript-Vue when using vue-cli-template

0👍

devtool: 'source-map'

recommended in Vue documentation doesn’t work in this setup.
It started working when I used:

devtool: 'eval-source-map'

after reading Webpack documentation.

I added this option directly to the webpack.config.js file – without using any vue.config.js file.

Leave a comment