Skip to content

Instantly share code, notes, and snippets.

@duylddev
Created October 3, 2018 12:48
Show Gist options
  • Save duylddev/88d4881cc36243ec003c0d378b88f671 to your computer and use it in GitHub Desktop.
Save duylddev/88d4881cc36243ec003c0d378b88f671 to your computer and use it in GitHub Desktop.
vscode debug vue config
// launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
}
// vue.config.ts
module.exports = {
configureWebpack: {
devtool: 'source-map'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment