readded user-uploaded track support

This commit is contained in:
uh wot 2021-11-10 00:15:28 +01:00
parent 44e40ba9a3
commit 1a802e7654
Signed by: uhwot
GPG key ID: CB2454984587B781
4 changed files with 70 additions and 32 deletions

6
.vscode/tasks.json vendored
View file

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