From c21e2a2e518883c843520c3fbd32af6d875b33da Mon Sep 17 00:00:00 2001 From: Johannes Brandenburger <79154528+johannesbrandenburger@users.noreply.github.com> Date: Thu, 18 Jan 2024 23:13:02 +0100 Subject: [PATCH] fix path in fallback logo --- frontend/src/js/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/js/config.js b/frontend/src/js/config.js index b185de0..9367c58 100644 --- a/frontend/src/js/config.js +++ b/frontend/src/js/config.js @@ -3,7 +3,7 @@ const BACKEND_URL = import.meta.env.VITE_BACKEND_URL; const TENANT = import.meta.env.VITE_TENANT || 'default'; const TENANT_CLIENT_ID = import.meta.env.VITE_TENANT_CLIENT_ID; -const TENANT_LOGO = import.meta.env.VITE_TENANT_LOGO || 'public/default-logo.png'; +const TENANT_LOGO = import.meta.env.VITE_TENANT_LOGO || '/default-logo.png'; const TENANT_BACKGROUNDCOLOR = import.meta.env.VITE_TENANT_BACKGROUNDCOLOR; const PATH = TENANT == 'default' ? '' : `/${TENANT}`;