vscode 使用 edge/chrome调试react或单文件

编程入门 行业动态 更新时间:2024-10-20 20:45:28

vscode 使用 <a href=https://www.elefans.com/category/jswz/34/1768733.html style=edge/chrome调试react或单文件"/>

vscode 使用 edge/chrome调试react或单文件

调试react

项目目录下,在.vscode目录新建launch.json,输入以下内容

{"configurations": [{"name": "Launch Edge","request": "launch","type": "msedge","url": "http://localhost:3000","webRoot": "${workspaceFolder}"}]
}

如果 是chrome,
将type改为:chome

调试本地文件

  • 如果不使用react,纯调试本地html文件,修改配置如下:
{"configurations": [{"name": "Launch edge","request": "launch","type": "msedge","file":"${file}"}]
}
  • 调试本地文件,但又需要访问其他目录文件,需要使用server。
    首先要启用server,两种方法:
    1、使用live-sever扩展插件,先运行一次,找到端口号;
    2、使用python -m http.server 5500。指定端口号为5500。
{"configurations": [{"type": "msedge",//可以更换为chome"request": "launch","name": "Launch Chrome from http","url": "http://localhost:5500/${fileBasename}","webRoot": "${workspaceFolder}"}]
}

更多推荐

vscode 使用 edge/chrome调试react或单文件

本文发布于:2024-03-08 05:39:26,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1719958.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:edge   vscode   chrome   单文   react

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!