Skip to content

Commit 6750c77

Browse files
Update the chrome launch file for vscode debugging (#2479) (#2035)
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". Co-authored-by: ashishiyer9 <[email protected]>
1 parent 4c03136 commit 6750c77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/v2/cookbook/debugging-in-vscode.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Activity Bar の Debugging アイコン をクリックして Debug ビューを
6060
"webRoot": "${workspaceFolder}/src",
6161
"breakOnLoad": true,
6262
"sourceMapPathOverrides": {
63-
"webpack:///./src/*": "${webRoot}/*"
63+
"webpack:///src/*": "${webRoot}/*"
6464
}
6565
},
6666
{

0 commit comments

Comments
 (0)