From d90ed9da59bb7c7f3c280bcdd1db90275785f319 Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Wed, 22 Oct 2025 12:24:49 -0700 Subject: [PATCH] add rybbit --- scripts/rybbit.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 scripts/rybbit.js diff --git a/scripts/rybbit.js b/scripts/rybbit.js new file mode 100644 index 0000000..07a58fd --- /dev/null +++ b/scripts/rybbit.js @@ -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); +})();