diff --git a/src/routes/webui.ts b/src/routes/webui.ts index 998953fc..fcfa402f 100644 --- a/src/routes/webui.ts +++ b/src/routes/webui.ts @@ -28,4 +28,9 @@ webuiRouter.get("/webui/mods", (_req, res) => { // Serve static files webuiRouter.use("/webui", express.static(path.join(rootDir, "static/webui"))); +// Serve favicon +webuiRouter.get("/favicon.ico", (_req, res) => { + res.sendFile(path.join(rootDir, "static/fixed_responses/favicon.ico")); +}); + export { webuiRouter }; diff --git a/static/fixed_responses/favicon.ico b/static/fixed_responses/favicon.ico new file mode 100644 index 00000000..69d24c9c Binary files /dev/null and b/static/fixed_responses/favicon.ico differ diff --git a/static/webui/index.html b/static/webui/index.html index ac4f14a0..9d55b8dd 100644 --- a/static/webui/index.html +++ b/static/webui/index.html @@ -65,7 +65,7 @@ Note: Changes made here will only be reflected in-game when the game re-downloads your inventory. Visiting the navigation should be the easiest way to trigger that.
-Login using your OpenWF account credentials.