launch.json 277 B

1234567891011
  1. {
  2. "configurations": [
  3. {
  4. "type": "chrome", // chrome、edge
  5. "name": "vben admin pro dev", // 调试的名称,可以自定义
  6. "request": "launch",
  7. "url": "http://localhost:5173",
  8. "webRoot": "${workspaceFolder}/apps/web-antd/src"
  9. }
  10. ]
  11. }