From 03bbe2a3d0390d57ff35d651931166736f0392ab Mon Sep 17 00:00:00 2001 From: f0x Date: Tue, 7 Jun 2022 20:33:24 +0200 Subject: [PATCH] default to localhost --- web/source/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/source/index.js b/web/source/index.js index 57749e213..d6f2eef54 100644 --- a/web/source/index.js +++ b/web/source/index.js @@ -96,8 +96,7 @@ fs.readdirSync(path.join(__dirname, "./css")).forEach((file) => { budoExpress({ port: 8080, - host: "10.0.1.1", - allowUnsafeHost: true, // FIXME: don't do that by default lol + host: "localhost", entryFiles: entryFiles, basePath: __dirname, bundlePath: "bundle.js",