Files
crewAI/docs/reo-tracking.js
Tony Kipkemboi 2ab002a5bf
Some checks failed
Notify Downstream / notify-downstream (push) Has been cancelled
Add Reo.dev tracking script to documentation (#3094)
2025-07-01 10:29:28 -04:00

16 lines
348 B
JavaScript

(function() {
var clientID = 'e1256ea7e23318f';
var initReo = function() {
Reo.init({
clientID: clientID
});
};
var script = document.createElement('script');
script.src = 'https://static.reo.dev/' + clientID + '/reo.js';
script.defer = true;
script.onload = initReo;
document.head.appendChild(script);
})();