From 5f8b6041acf2eac0c969e5898c6a80815b5d1f38 Mon Sep 17 00:00:00 2001 From: jaw52 <2135326728@qq.com> Date: Fri, 4 Nov 2022 22:06:17 +0800 Subject: [PATCH] build(vscode_debug): add skipFiles --- .vscode/launch.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index c36a0e2..e7aefc2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -41,7 +41,14 @@ "port": 9229, "request": "attach", "type": "pwa-chrome", - "timeout": 60000 + "timeout": 60000, + "skipFiles": [ + "/**", + "${workspaceRoot}/node_modules/**", + "${workspaceRoot}/dist-electron/**", + // Skip files in host(VITE_DEV_SERVER_URL) + "http://127.0.0.1:7777/**" + ] }, ] }