DEV Community

Discussion on: Debugging Azure Static Web Apps in VS Code

Collapse
 
victorioberra profile image
Victorio Berra

I created a vue.config.js and put the following in it:

module.exports = {
    configureWebpack: (config) => {
        config.devtool = 'source-map'
    },
};
Enter fullscreen mode Exit fullscreen mode

And it kind of worked, breakpoints worked but they would only be created at the end of methods. So definitely seems to be a source maps issue.

Thanks for the reply!