launch.json 599 B

1234567891011121314151617181920212223
  1. {
  2. // 使用 IntelliSense 了解相关属性。
  3. // 悬停以查看现有属性的描述。
  4. // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "vuejs: chrome",
  9. "type": "chrome",
  10. "request": "launch",
  11. "url": "http://localhost:6589",
  12. "webRoot": "${workspaceFolder}"
  13. },
  14. {
  15. "name": "vuejs: attach chrome",
  16. "type": "chrome",
  17. "request": "attach",
  18. "port": 6589,
  19. "url": "http://localhost:6589",
  20. "webRoot": "${workspaceFolder}"
  21. }
  22. ]
  23. }