This commit is contained in:
张成
2025-12-22 16:26:59 +08:00
parent aa2d03ee30
commit e17d5610f5
54 changed files with 11735 additions and 3 deletions

15
.vscode/launch.json vendored
View File

@@ -9,7 +9,7 @@
"request": "launch",
"name": "后端调试",
"skipFiles": [
"<node_internals>/**",
"<node_internals>/**"
],
"resolveSourceMapLocations":[
"${workspaceFolder}/",
@@ -28,7 +28,16 @@
"npm run dev"
],
"cwd": "${workspaceFolder}/admin"
},
}
],
"compounds": [
{
"name": "启动全部(后端+前端)",
"configurations": [
"后端调试",
"后端前端"
],
"stopAll": true
}
]
}