From 72ee89d06d43022b67e416d11aed012442d40b02 Mon Sep 17 00:00:00 2001 From: jaw52 <2135326728@qq.com> Date: Fri, 4 Nov 2022 22:30:42 +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 9250453..3fed951 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -40,7 +40,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:3344/**" + ] }, ] }