需要安装最新版本的VS Code
和VS Code Chrome Debugger Extension
然后将下面的块添加到您的launch.json
文件中,并将其放在.vscode
应用程序根目录下的文件夹中。
{
"version": "0.2.0",
"configurations": [
{
"name": "Chrome",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/src",
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
}
然后先npm start
启动项目,在使用vscode debug