From d5cdc9198cd6a03a94f1e92b664044ccff5f7aaf Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sat, 9 Oct 2021 14:46:59 +0200 Subject: :art: cdn now also works without setting a public endpoint --- bundle/src/Server.ts | 3 --- 1 file changed, 3 deletions(-) (limited to 'bundle') diff --git a/bundle/src/Server.ts b/bundle/src/Server.ts index 662b9008..5dda2d02 100644 --- a/bundle/src/Server.ts +++ b/bundle/src/Server.ts @@ -30,9 +30,6 @@ async function main() { cdn: { endpointClient: "${location.host}", endpointPrivate: `http://localhost:${port}`, - ...(!Config.get().cdn.endpointPublic && { - endpointPublic: `http://localhost:${port}`, - }), }, gateway: { endpointClient: -- cgit 1.5.1 From c217e60ff6d7adfef96548e88a382a55c711bde3 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sat, 9 Oct 2021 18:06:02 +0200 Subject: :bug: fix build.js? --- bundle/scripts/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bundle') diff --git a/bundle/scripts/build.js b/bundle/scripts/build.js index 05cf37ce..4266942f 100644 --- a/bundle/scripts/build.js +++ b/bundle/scripts/build.js @@ -89,7 +89,7 @@ function walk(dir) { var results = []; var list = fs.readdirSync(dir); list.forEach(function (file) { - file = dir + "/" + file; + file = path.join(dir, file); var stat = fs.statSync(file); if (stat && stat.isDirectory()) { /* Recurse into a subdirectory */ -- cgit 1.5.1