qumra-engine 2.0.52 → 2.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -23,7 +23,7 @@ exports.default = new (class SeoExtension {
|
|
|
23
23
|
const pageTitle = seo.title || page.title || "Store";
|
|
24
24
|
const pageDescription = seo.description || page.description || "";
|
|
25
25
|
const pageImage = seo.image || "";
|
|
26
|
-
const favicon =
|
|
26
|
+
const favicon = seo.logo || "/favicon.ico"; // الأولوية للوجو
|
|
27
27
|
let tags = `
|
|
28
28
|
<title>${escapeHtml(pageTitle)}</title>
|
|
29
29
|
${favicon ? `<link rel="icon" type="image/png" href="${escapeHtml(favicon)}">` : ""}
|