From ac1f79b55887a9b42b64bf93c6d129cdf7968e53 Mon Sep 17 00:00:00 2001 From: ashishiyer9 <32933445+ashishiyer9@users.noreply.github.com> Date: Sat, 15 Feb 2020 21:51:00 +0530 Subject: [PATCH] Update the chrome launch file for vscode debugging 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". --- src/v2/cookbook/debugging-in-vscode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2/cookbook/debugging-in-vscode.md b/src/v2/cookbook/debugging-in-vscode.md index 9fbf8140c7..5c79d7b6dd 100644 --- a/src/v2/cookbook/debugging-in-vscode.md +++ b/src/v2/cookbook/debugging-in-vscode.md @@ -59,7 +59,7 @@ Click on the Debugging icon in the Activity Bar to bring up the Debug view, then "webRoot": "${workspaceFolder}/src", "breakOnLoad": true, "sourceMapPathOverrides": { - "webpack:///./src/*": "${webRoot}/*" + "webpack:///src/*": "${webRoot}/*" } }, {