gpt4 book ai didi

reactjs - 如何在 VS Code 中调试 React?错误断点已设置但尚未绑定(bind)

转载 作者:行者123 更新时间:2023-12-03 13:53:53 25 4
gpt4 key购买 nike

我创建了 React 网站并使用 gulp 运行它。我想使用 VS code 来调试它,但是当我设置断点时我收到警告。这里可能有什么问题?我的所有代码都在 c:\psadmin\src 文件夹中。

Unverified breakpoint. Break point set but not yet bound.

我的launch.json

"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:9005",
"webRoot": "${workspaceFolder}"
}
]

我的本​​地目录

enter image description here

最佳答案

尽管我使用的是 Webpack,但我也遇到了类似的问题。您应该能够将 webRoot 设置为 gulp 配置使用的入口点。例如,我的 Webpack 配置入口点是 src/entry.js,所以我的启动配置是:

{
"version": "0.2.0",
"configurations": [
{
"name": "Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8089/#/",
"webRoot": "${workspaceFolder}/src/entry.js"
}
]
}

关于reactjs - 如何在 VS Code 中调试 React?错误断点已设置但尚未绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50082328/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com