Skip to content

Instantly share code, notes, and snippets.

@mikaelhadler
Created January 22, 2019 14:25
Show Gist options
  • Save mikaelhadler/bce17c380d00597fc740c42f6b5adb8d to your computer and use it in GitHub Desktop.
Save mikaelhadler/bce17c380d00597fc740c42f6b5adb8d to your computer and use it in GitHub Desktop.
Config file debugger Vue.js apps in VS Code
{
"version": "0.2.0",
"configurations": [
{
"type": "browser-preview",
"name": "Browser Preview: Attach",
"request": "attach"
},
{
"type": "browser-preview",
"request": "launch",
"name": "Browser Preview: Launch",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment