build(projects): add VSCode debug config file

This commit is contained in:
Soybean
2023-01-15 11:00:00 +08:00
parent 458b7adb29
commit 0c12665fda
2 changed files with 13 additions and 0 deletions

12
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Vue debugger",
"url": "http://localhost:3200",
"webRoot": "${workspaceFolder}"
}
]
}