getting host without parsing url

This commit is contained in:
uh wot 2021-12-03 20:10:49 +01:00
parent c5e2d749e9
commit 1160a0e1ba
Signed by: uhwot
GPG key ID: CB2454984587B781
4 changed files with 6 additions and 7 deletions

6
.vscode/tasks.json vendored
View file

@ -6,7 +6,7 @@
{
"label": "build",
"type": "shell",
"command": "NODE_OPTIONS=--openssl-legacy-provider wrangler build",
"command": "wrangler build",
"problemMatcher": [],
"group": {
"kind": "build",
@ -16,7 +16,7 @@
{
"label": "dev",
"type": "shell",
"command": "NODE_OPTIONS=--openssl-legacy-provider wrangler dev",
"command": "wrangler dev",
"problemMatcher": [],
"group": {
"kind": "test",
@ -26,7 +26,7 @@
{
"label": "publish",
"type": "shell",
"command": "NODE_OPTIONS=--openssl-legacy-provider wrangler publish"
"command": "wrangler publish"
}
]
}