Compare commits

..

2 Commits

Author SHA1 Message Date
06e58752b9
release: v1.6.0
Some checks failed
Node.js CI / Lint and Test (push) Successful in 1m13s
Code Analysis / SonarQube (push) Failing after 1m22s
2025-04-04 15:06:21 -07:00
db4dcc3090
feat: track urls and page titles 2025-04-04 15:06:04 -07:00
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "website-headers", "name": "website-headers",
"version": "1.5.0", "version": "1.6.0",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"type": "module", "type": "module",

View File

@ -24,7 +24,7 @@ const body = document.querySelector("body");
const title = document.querySelector("title"); const title = document.querySelector("title");
const description = document.querySelector(`meta[name="description"]`); const description = document.querySelector(`meta[name="description"]`);
const { href: url, hostname } = window.location; const { href: url, hostname, pathname } = window.location;
// #endregion // #endregion
@ -314,6 +314,10 @@ analytics.setAttribute("domain", "nhcarrigan.com");
analytics.src analytics.src
// eslint-disable-next-line stylistic/max-len // eslint-disable-next-line stylistic/max-len
= "https://analytics.nhcarrigan.com/js/script.file-downloads.hash.outbound-links.pageview-props.revenue.tagged-events.js"; = "https://analytics.nhcarrigan.com/js/script.file-downloads.hash.outbound-links.pageview-props.revenue.tagged-events.js";
analytics.setAttribute("event-domain", hostname);
analytics.setAttribute("data-domain", "nhcarrigan.com");
analytics.setAttribute("event-page", title?.innerText ?? "Unknown Page");
analytics.setAttribute("event-path", pathname);
const analytics2 = document.createElement("script"); const analytics2 = document.createElement("script");
analytics2.innerHTML = ` analytics2.innerHTML = `
window.plausible = window.plausible ?? window.plausible = window.plausible ??