sutho100
11/13/2019 - 6:05 AM

vds code chrome debugger for vue stuff

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [

        {
            "type": "chrome",
            "request": "launch",
            "name": "Launch Chrome against localhost",
            "url": "http://scorecard.dev.longtailux.com/report/f400b32dc8be58ae52679a8b1eb9987822d3befe863c79f07dae47e36affac3b-full",
            "webRoot": "${workspaceFolder}/src",
            "runtimeArgs": ["--disable-web-security"],
            "sourceMaps": true,
            "sourceMapPathOverrides": {
                "webpack:///./*": "${webRoot}/*",
                "webpack:///src/*": "${webRoot}/*",
                "webpack:///*": "*",
                "webpack:///./~/*": "${webRoot}/node_modules/*",
                "meteor://💻app/*": "${webRoot}/*"
              }
        }
    ]
}





//vue.config.js 
module.exports = {
    configureWebpack: {
      devtool: 'source-map'
    }
  }