mirror of
https://github.com/fosrl/docs-v2.git
synced 2026-02-07 21:46:42 +00:00
add rybbit
This commit is contained in:
12
scripts/rybbit.js
Normal file
12
scripts/rybbit.js
Normal 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);
|
||||
})();
|
||||
Reference in New Issue
Block a user