Skip to content

Commit 7c87cd6

Browse files
authored
Merge pull request #299 from jaw52/build/skipFiles_when_debug
Build/skip files when debug
2 parents 2512ad1 + cd22f31 commit 7c87cd6

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.vscode/launch.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,14 @@
4040
"port": 9229,
4141
"request": "attach",
4242
"type": "pwa-chrome",
43-
"timeout": 60000
43+
"timeout": 60000,
44+
"skipFiles": [
45+
"<node_internals>/**",
46+
"${workspaceRoot}/node_modules/**",
47+
"${workspaceRoot}/dist-electron/**",
48+
// Skip files in host(VITE_DEV_SERVER_URL)
49+
"http://127.0.0.1:3344/**"
50+
]
4451
},
4552
]
4653
}

0 commit comments

Comments
 (0)