Skip to content

Commit cffc9fb

Browse files
continue[bot]Continuebdougie
authored
Add Reo.dev tracking infrastructure for documentation (#8672)
* 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>
1 parent 6f992b7 commit cffc9fb

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

docs/docs.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,8 @@
367367
}
368368
},
369369
"custom": {
370-
"css": ["custom.css"]
370+
"css": ["custom.css"],
371+
"js": ["reo-tracking.js"]
371372
},
372373
"redirects": [
373374
{

docs/reo-tracking.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Reo.dev Tracking Implementation for Continue Documentation
2+
// Client ID: 7aa28ed11570734
3+
4+
!(function () {
5+
var e, t, n;
6+
e = "7aa28ed11570734";
7+
t = function () {
8+
Reo.init({
9+
clientID: "7aa28ed11570734",
10+
});
11+
};
12+
n = document.createElement("script");
13+
n.src = "https://static.reo.dev/" + e + "/reo.js";
14+
n.defer = !0;
15+
n.onload = t;
16+
document.head.appendChild(n);
17+
})();

0 commit comments

Comments
 (0)