launch.json 321 B

12345678910111213141516
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Debug h5",
  6. "type": "chrome",
  7. "runtimeArgs": [
  8. "--remote-debugging-port=9222"
  9. ],
  10. "request": "launch",
  11. "url": "http://localhost:5173",
  12. "webRoot": "${workspaceFolder}",
  13. "preLaunchTask": "uni:h5"
  14. }
  15. ]
  16. }