From 9196aeaad636df15432406bc803aa2489f9611c5 Mon Sep 17 00:00:00 2001 From: Preston Maness Date: Sun, 11 Jun 2023 23:52:53 -0500 Subject: [PATCH] Add SCHEME environment variable to vscodium launcher --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index d0b1191..07e5488 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -16,8 +16,8 @@ "/**" ], "type": "node", - "env": { "DOMAIN": "localhost:3000"}, + "env": { "DOMAIN": "localhost:3000", "SCHEME": "http"}, "outputCapture": "std" } ] -} \ No newline at end of file +}