From 3b19b24181caf69abc261b27ca00ba98d3a426a8 Mon Sep 17 00:00:00 2001 From: srgooglo Date: Wed, 7 Sep 2022 12:28:21 +0200 Subject: [PATCH] update debug profiles --- .vscode/launch.json | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 6ffb4e28..243ba1ca 100755 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -12,7 +12,7 @@ }, { "name": "Attach to Chrome", - "port": 9222, + "port": 8000, "request": "attach", "type": "pwa-chrome", "webRoot": "${workspaceFolder}" @@ -39,10 +39,22 @@ { "name": "Launch via NPM", "request": "launch", - "runtimeArgs": ["run-script", "debug"], + "runtimeArgs": [ + "run-script", + "debug" + ], "runtimeExecutable": "npm", - "skipFiles": ["/**"], + "skipFiles": [ + "/**" + ], "type": "pwa-node" + }, + { + "name": "Launch WEB APP", + "type": "pwa-chrome", + "name": "http://192.168.0.2:8000", + "request": "launch", + "url": "http://192.168.0.2:8000" } ] }