Merge pull request #81 from jaw52/build/skip_files_when_debug

Build/skip files when debug
This commit is contained in:
草鞋没号 2022-11-05 11:49:54 +08:00 committed by GitHub
commit a70714c6ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

9
.vscode/launch.json vendored
View File

@ -41,7 +41,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:7777/**"
]
},
]
}