nodejs같은 서버가 없이 vscode에서 순수 html안에서 javascript를 디버깅하고 싶습니다.
브레이크 포인트를 지정했는데 멈추지 않는거 같아요
launch.json파일은 html 파일이름만 정했습니다.
혹시 왜 안멈추는지 아시는분 계신가요?
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Open test.html",
"file": "c:\\Users\\Administrator\\Desktop\\Test Code\\test\\test.html"
}
]
}