add rybbit

This commit is contained in:
miloschwartz
2025-10-22 12:24:49 -07:00
parent 6fcd426252
commit d90ed9da59

12
scripts/rybbit.js Normal file
View File

@@ -0,0 +1,12 @@
// Rybbit Analytics Integration
(function () {
// Create the script element
const script = document.createElement("script");
script.src = "https://rybbit.fossorial.io/api/script.js";
script.async = true;
script.defer = true;
script.setAttribute("data-site-id", "da4fb64dc2d5"); // Replace with your actual Site ID
// Append the script to the document head
document.head.appendChild(script);
})();