VSCode에서 반응 디버깅
📚 이론의 분.
디버깅에는 두 가지 기본 유형이 있습니다.
몇 가지 기본 사항을 이해한 후 실제 구성으로 이동하겠습니다.
1) 프로젝트 루트에 있는
.vscode/launch.json
의 구성 배열 내에 구성 개체를 추가합니다.{
"configurations": [
{
"name": "Launch Chrome",
"request": "launch",
"type": "chrome",
"url": "http://localhost:8080", // localhost where we will launch our front-end
"webRoot": "${workspaceFolder}"
},
]
}
💡 Tip: You can generate the same code by pressing the "Add configuration" button in VSCode bottom right corner.
After clicking the button, you will see a context menu where you should choose Chrome launch.
And here we go! You will get the same config as in step #1 😎
2) 그런 다음 왼쪽 상단에서 VSCode의
Run and debug menu
내부 구성을 시작하는 옵션을 선택합니다.3) 결과적으로 지정된 포트에서 해제된 애플리케이션을 볼 수 있습니다!
VSCode 디버거의 컨트롤러에 대한 다음 문서에서 뵙겠습니다 🥳
Reference
이 문제에 관하여(VSCode에서 반응 디버깅), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/dealwith/react-debugging-in-vscode-1c0f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)