diff --git a/customize.dist/index.html b/customize.dist/index.html index 54f3d867a..70a015ce9 100644 --- a/customize.dist/index.html +++ b/customize.dist/index.html @@ -15,7 +15,6 @@ SPDX-License-Identifier: AGPL-3.0-or-later -
diff --git a/customize.dist/pages.js b/customize.dist/pages.js index dbce1f0de..07a7d37a1 100644 --- a/customize.dist/pages.js +++ b/customize.dist/pages.js @@ -12,13 +12,14 @@ define([ '/api/config', '/common/extensions.js', 'optional!/api/instance', + '/customize/fonts/lucide.js' ], function (h, Language, Util, AppConfig, Msg, $, ApiConfig, - Extensions, Instance) { + Extensions, Instance, Lucide) { var Pages = {}; Pages.setHTML = function (e, html) { e.innerHTML = html; - setTimeout(() => lucide.createIcons(), 0); + setTimeout(() => Lucide.createIcons(), 0); return e; };