More font fixes... Kill the flash.

This commit is contained in:
2026-03-12 17:32:12 -03:00
parent 72f0eab718
commit c15adf8e3c
22 changed files with 121 additions and 5 deletions

View File

@@ -65,12 +65,21 @@
console.error('Failed to load Google Analytics', e);
}
// Microsoft Clarity
// Microsoft Clarity use the official loader snippet so that
// window.clarity is defined before the tag script runs.
try {
var clarityScript = document.createElement('script');
clarityScript.defer = true;
setScriptSrc(clarityScript, 'https://www.clarity.ms/tag/vuo5q3yf79?ref=bwt');
document.head.appendChild(clarityScript);
(function (c, l, a, r, i, t, y) {
c[a] =
c[a] ||
function () {
(c[a].q = c[a].q || []).push(arguments);
};
t = l.createElement(r);
t.async = 1;
setScriptSrc(t, 'https://www.clarity.ms/tag/' + i);
y = l.getElementsByTagName(r)[0];
y.parentNode.insertBefore(t, y);
})(window, document, 'clarity', 'script', 'vuo5q3yf79');
} catch (e2) {
console.error('Failed to load Microsoft Clarity', e2);
}