From 6f9b98ffc29e3cb2125ffd70503300604aea01f8 Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Sat, 16 Sep 2023 10:54:51 +0200 Subject: [PATCH] chore: update vscode launch config --- .vscode/launch.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 9371697e..370f6fec 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,12 +5,14 @@ "version": "0.2.0", "configurations": [ { - "type": "pwa-chrome", + "type": "chrome", "request": "launch", "runtimeExecutable": "/usr/bin/chromium", "name": "Launch Chrome against localhost", "url": "http://localhost:30000/game", - "webRoot": "${workspaceFolder}/dist" + "pathMapping": { + "/systems/ds4": "${workspaceFolder}/dist" + } } ] }