diff --git a/.vscode/launch.json b/.vscode/launch.json index fde5018..5124266 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,14 +6,20 @@ "configurations": [ { "name": "Debug Scelta Carriere in browser", - "request": "launch", - "runtimeExecutable": "npm", - "runtimeArgs": ["run", "dev"], "cwd": "${workspaceFolder}/scelta-carriera", "env": { "NO_COLOR": "1" }, + "outputCapture": "std", "type": "node", + "request": "launch", + "runtimeExecutable": "npm", + "runtimeArgs": ["run", "dev"], + "skipFiles": [ + "/**", + "**/node_modules/**", + "**/@vite/client/**" + ], "serverReadyAction": { "action": "debugWithEdge", "pattern": "Local:\\s+http://localhost:([0-9]+)/",