Skip to content

Commit 8c02378

Browse files
authored
Update the chrome launch file for vscode debugging (#2479)
Weren't able to set breakpoints to specific lines of Vue code. The issue was fixed by removing the "./" part of the "webpack" key; inside "sourceMapPathOverrides".
1 parent c38480b commit 8c02378

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/cookbook/debugging-in-vscode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Click on the Debugging icon in the Activity Bar to bring up the Debug view, then
5959
"webRoot": "${workspaceFolder}/src",
6060
"breakOnLoad": true,
6161
"sourceMapPathOverrides": {
62-
"webpack:///./src/*": "${webRoot}/*"
62+
"webpack:///src/*": "${webRoot}/*"
6363
}
6464
},
6565
{

0 commit comments

Comments
 (0)