Fixes http server launch config

This commit is contained in:
Henning Dieterichs 2023-02-22 11:47:30 +01:00
parent 784bbdab8f
commit 031e97749c
No known key found for this signature in database
GPG key ID: 771381EFFDB9EC06

13
.vscode/tasks.json vendored
View file

@ -260,9 +260,18 @@
// Used for monaco editor playground launch config
"label": "Launch Http Server",
"type": "shell",
"command": "node_modules/.bin/http-server --cors --port 5001 -a 127.0.0.1 -s -c-1",
"command": "node_modules/.bin/http-server --cors --port 5001 -a 127.0.0.1 -c-1 -s",
"isBackground": true,
"problemMatcher": [],
"problemMatcher": {
"pattern": {
"regexp": ""
},
"background": {
"activeOnStart": true,
"beginsPattern": "never match",
"endsPattern": ".*"
}
},
"dependsOn": [
"Core - Build"
]