feat(vscode): 增强开发调试配置支持
Some checks failed
/ build-and-test (push) Failing after 1m24s
/ playwright (push) Successful in 1m46s
CI/CD Pipeline / build-and-deploy (push) Failing after 2m2s
CI/CD Pipeline / playwright (push) Successful in 4m5s

This commit is contained in:
严浩
2025-10-16 16:37:40 +08:00
parent 4e31d8b80c
commit 7b6f7ad2fb
8 changed files with 129 additions and 57 deletions

13
.vscode/launch.json vendored
View File

@@ -8,7 +8,18 @@
"url": "http://localhost:4730/",
"webRoot": "${workspaceFolder}",
"firefoxExecutable": "/Applications/Firefox Nightly.app/Contents/MacOS/firefox",
"preLaunchTask": "🚀 dev"
"preLaunchTask": "🚀 dev",
"pathMappings": [
{
"url": "http://localhost:4730",
"path": "${workspaceFolder}"
}
],
"reAttach": true,
"reloadOnChange": {
"watch": "${workspaceFolder}/src/**/*.{js,jsx,ts,tsx,vue}",
"ignore": "**/node_modules/**"
}
}
]
}