From bd8aa0296bd06840f9191905f495fc9f7d4086fd Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Mon, 28 Feb 2022 22:36:48 -0800 Subject: [PATCH] Add map debugging launch configuration for vscode. --- client/.vscode/launch.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 client/.vscode/launch.json diff --git a/client/.vscode/launch.json b/client/.vscode/launch.json new file mode 100644 index 00000000..7f831935 --- /dev/null +++ b/client/.vscode/launch.json @@ -0,0 +1,10 @@ +{ + "configurations": [ + { + "type": "pwa-chrome", + "name": "http://localhost:3000", + "request": "launch", + "url": "http://localhost:3000" + } + ] +} \ No newline at end of file