![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2F8luco%2FbtrOlKOafcH%2FiD19giLIkyxIBFl6QGW9a1%2Fimg.png)
VSCode를 이용하여 Debugging을 하려고 하는데, 내가 설정한 breakpoint가 디버깅 모드만 들어가면 아래 사진처럼 unbound breakpoint로 바뀌면서 저 자리에서 멈추질 않았다. 문제는 launch.json파일에서 file mapping이 잘 되지 않아서 였다. 아래처럼 적용을 하니 정상적으로 작동하는 것을 볼 수 있었다. // launch.json { "version": "0.2.0", "configurations": [ { "type": "pwa-chrome", "name": "vuejs: chrome", "request": "launch", "url": "https://localhost:9090/", "breakOnLoad": true, "webRoot": "${worksp..