feat: add vscode debug config

This commit is contained in:
vben
2024-06-22 20:55:31 +08:00
parent 65ba45fdc0
commit 7574a5914c
5 changed files with 3451 additions and 149 deletions

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

@@ -0,0 +1,11 @@
{
"configurations": [
{
"type": "chrome", // chrome、edge
"name": "vben admin pro dev", // 调试的名称,可以自定义
"request": "launch",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}/apps/web-antd/src"
}
]
}