git clone https://gitee.com/frontend-qin/react-source-code.git
安装插件 Debugger for Chrome
后,
下边的文件
,然后 再点击 右下角的 添加配置
按钮
或者粘贴下边这个
url:必须是你的 react 项目启动的开发环境地址,否则会是404
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:3000", // 改为开发环境启动的url
"webRoot": "${workspaceFolder}",
}
]
}
yarn start