| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "configurations": [
- {
- "type": "vscode-edge-devtools.debug",
- "request": "launch",
- "name": "Launch Microsoft Edge and open the Edge DevTools",
- "url": "http://localhost:8080",
- "webRoot": "e:\\web\\main\\index.html"
- },
- {
- "type": "pwa-msedge",
- "name": "Launch Microsoft Edge",
- "request": "launch",
- "runtimeArgs": [
- "--remote-debugging-port=9222"
- ],
- "url": "e:\\web\\main\\index.html", // Provide your project's url to finish configuring
- "presentation": {
- "hidden": true
- }
- },
- {
- "type": "pwa-msedge",
- "name": "Launch Microsoft Edge in headless mode",
- "request": "launch",
- "runtimeArgs": [
- "--headless",
- "--remote-debugging-port=9222"
- ],
- "url": "e:\\web\\main\\index.html", // Provide your project's url to finish configuring
- "presentation": {
- "hidden": true
- }
- },
- {
- "type": "vscode-edge-devtools.debug",
- "name": "Open Edge DevTools",
- "request": "attach",
- "url": "e:\\web\\main\\index.html", // Provide your project's url to finish configuring
- "presentation": {
- "hidden": true
- }
- }
- ],
- "compounds": [
- {
- "name": "Launch Edge Headless and attach DevTools",
- "configurations": [
- "Launch Microsoft Edge in headless mode",
- "Open Edge DevTools"
- ]
- },
- {
- "name": "Launch Edge and attach DevTools",
- "configurations": [
- "Launch Microsoft Edge",
- "Open Edge DevTools"
- ]
- }
- ]
- }
|