From d3887133501098b975fcaac04c70d27c27156b6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20=E2=80=9CCLOVIS=E2=80=9D=20Canet?= Date: Mon, 17 Nov 2025 20:40:39 +0100 Subject: [PATCH] feat(website): Add the site url in the page name --- .../overrides/partials/integrations/analytics/custom.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/website/overrides/partials/integrations/analytics/custom.html b/docs/website/overrides/partials/integrations/analytics/custom.html index bdbaa3c..981672d 100644 --- a/docs/website/overrides/partials/integrations/analytics/custom.html +++ b/docs/website/overrides/partials/integrations/analytics/custom.html @@ -17,6 +17,10 @@ area: 'site', } }, + transformRequest: function(request) { + request.u = request.u.replace(/.*\/jobs\/[0-9]+\/artifacts\/[^\/]*/g, ''); // Remove review app URL prefix + return request; + } }); // Append the external script dynamically (function () { -- 2.51.2