Add empty matrix env vars to launch.json

This commit is contained in:
Preston Maness 2023-06-13 19:12:38 -05:00
parent cf11a3f343
commit 916dfcc6d3

7
.vscode/launch.json vendored
View file

@ -16,7 +16,12 @@
"<node_internals>/**"
],
"type": "node",
"env": { "DOMAIN": "localhost:3000", "SCHEME": "http"},
"env": {
"DOMAIN": "localhost:3000",
"SCHEME": "http",
"MATRIX_ACCESS_TOKEN": "",
"MATRIX_INSTANCE": ""
},
"outputCapture": "std"
}
]