Merge pull request #299 from jaw52/build/skipFiles_when_debug

Build/skip files when debug
This commit is contained in:
草鞋没号 2022-11-05 11:50:52 +08:00 committed by GitHub
commit 7c87cd6f53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
.vscode/launch.json vendored
View File

@ -40,7 +40,14 @@
"port": 9229,
"request": "attach",
"type": "pwa-chrome",
"timeout": 60000
"timeout": 60000,
"skipFiles": [
"<node_internals>/**",
"${workspaceRoot}/node_modules/**",
"${workspaceRoot}/dist-electron/**",
// Skip files in host(VITE_DEV_SERVER_URL)
"http://127.0.0.1:3344/**"
]
},
]
}