From 916dfcc6d3e0c7c043d85489bd7caee81bc51175 Mon Sep 17 00:00:00 2001 From: Preston Maness Date: Tue, 13 Jun 2023 19:12:38 -0500 Subject: [PATCH] Add empty matrix env vars to launch.json --- .vscode/launch.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 07e5488..dab9439 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -16,7 +16,12 @@ "/**" ], "type": "node", - "env": { "DOMAIN": "localhost:3000", "SCHEME": "http"}, + "env": { + "DOMAIN": "localhost:3000", + "SCHEME": "http", + "MATRIX_ACCESS_TOKEN": "", + "MATRIX_INSTANCE": "" + }, "outputCapture": "std" } ]