@adobe/helix-rum-enhancer
Advanced tools
Comparing version 1.15.3 to 1.16.0
@@ -0,1 +1,8 @@ | ||
# [1.16.0](https://github.com/adobe/helix-rum-enhancer/compare/v1.15.3...v1.16.0) (2024-05-06) | ||
### Features | ||
* **missingresource:** remove feature flag (1.x) ([0bad440](https://github.com/adobe/helix-rum-enhancer/commit/0bad4407a2190eccb0298ce58b60b571aab3e9b3)) | ||
## [1.15.3](https://github.com/adobe/helix-rum-enhancer/compare/v1.15.2...v1.15.3) (2024-04-22) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "1.15.3", | ||
"version": "1.16.0", | ||
"description": "Helix RUM Enhancer", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -185,10 +185,7 @@ /* | ||
}); | ||
if (window.origin === 'business.adobe.com') { | ||
// feature flagged for now | ||
list.getEntries() | ||
.filter((entry) => entry.responseStatus === 404) | ||
.forEach((entry) => { | ||
sampleRUM('missingresource', { source: entry.name, target: entry.hostname }); | ||
}); | ||
} | ||
list.getEntries() | ||
.filter((entry) => entry.responseStatus === 404) | ||
.forEach((entry) => { | ||
sampleRUM('missingresource', { source: entry.name, target: entry.hostname }); | ||
}); | ||
}).observe({ type: 'resource', buffered: true }); | ||
@@ -195,0 +192,0 @@ |
43672
237