GIT提交信息:

工作:为API调试添加调试配置。

- 添加一个launch.json文件来调试API。
- 通过优化数据库查询提高API性能。
- 实现更好的错误处理来提高用户体验。
This commit is contained in:
zhl 2023-04-06 16:03:49 +08:00
parent 2af885229c
commit d1997cf840

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

@ -0,0 +1,21 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug Api",
"request": "launch",
"runtimeArgs": [
"run-script",
"dev:api"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
]
}