From cf59a3fc654197f740a8faa13298919a9334b090 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 28 Feb 2023 13:04:56 +0100 Subject: [PATCH] Create VSC run config --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..c1f856f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "name": "Run website", + "request": "launch", + "runtimeArgs": [ + "run", + "dev" + ], + "runtimeExecutable": "yarn", + "skipFiles": [ + "/**" + ], + } + ] +} \ No newline at end of file