* Add Reo.dev tracking infrastructure for documentation - Add reo-tracking.js placeholder file for Reo.dev snippet - Update docs.json to include custom JS for tracking - Add REO_SETUP.md with detailed setup instructions - Configure key pages for high-intent tracking The infrastructure is ready but requires the actual Reo.dev tracking snippet from the dashboard to be added to docs/reo-tracking.js to enable tracking. Fixes #8671 Generated with Continue (https://continue.dev) Co-Authored-By: Continue <noreply@continue.dev> Co-authored-by: Brian Douglas <brian@continue.dev> * feat: Add Reo.dev tracking script to documentation - Replace placeholder with actual Reo.dev tracking script - Update tracking script with Client ID: 7aa28ed11570734 - Remove REO_SETUP.md as tracking is now implemented - Script will load from https://static.reo.dev/7aa28ed11570734/reo.js Closes #8671 Generated with [Continue](https://continue.dev) Co-Authored-By: Continue <noreply@continue.dev> --------- Co-authored-by: continue[bot] <continue[bot]@users.noreply.github.com> Co-authored-by: Continue <noreply@continue.dev> Co-authored-by: Brian Douglas <brian@continue.dev> Co-authored-by: Brian 'bdougie' Douglas <brian@dinnerpeople.app>
18 lines
395 B
JavaScript
18 lines
395 B
JavaScript
// Reo.dev Tracking Implementation for Continue Documentation
|
|
// Client ID: 7aa28ed11570734
|
|
|
|
!(function () {
|
|
var e, t, n;
|
|
e = "7aa28ed11570734";
|
|
t = function () {
|
|
Reo.init({
|
|
clientID: "7aa28ed11570734",
|
|
});
|
|
};
|
|
n = document.createElement("script");
|
|
n.src = "https://static.reo.dev/" + e + "/reo.js";
|
|
n.defer = !0;
|
|
n.onload = t;
|
|
document.head.appendChild(n);
|
|
})();
|