Skip to content

Instantly share code, notes, and snippets.

@bsed
Created September 16, 2019 07:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bsed/5f27cb6c8c791dfc7443f6809f49d7e2 to your computer and use it in GitHub Desktop.
Save bsed/5f27cb6c8c791dfc7443f6809f49d7e2 to your computer and use it in GitHub Desktop.
vue vscode
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://localhost:8080/zhtj/",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
},
{
"type": "firefox",
"request": "launch",
"name": "vuejs: firefox",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"pathMappings": [
{
"url": "webpack:///src/",
"path": "${webRoot}/"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment