Hi @aaronksaunders , sorry if i did a mistake. It´s my first post here and if I withdrawn it, it wasnt on purpose. I just edit it to correct some spelling.
By the way, I found a solution for my problem inside Vue.js docs
When using Ionic Vue
it is necessary to set devtool
parameter inside vue.config.js
, as follows:
module.exports = {
configureWebpack: {
devtool: 'source-map'
}
}
Now, I have source maps inside webpack and can set my breakpoints.