Files
klz-cables.com/.pnpm-store/v10/files/ae/1118948077565b816e2ef4cbda7dd0fb22d11ff9deb444ab95ad1483b06a56786a5275e7827c4d4d419b6d6620239bda50cf921ee7eea1be697035ba7b4dbe
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

34 lines
862 B
Plaintext

Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const traceData = require('./traceData.js');
/**
* Returns a string of meta tags that represent the current trace data.
*
* You can use this to propagate a trace from your server-side rendered Html to the browser.
* This function returns up to two meta tags, `sentry-trace` and `baggage`, depending on the
* current trace data state.
*
* @example
* Usage example:
*
* ```js
* function renderHtml() {
* return `
* <head>
* ${getTraceMetaTags()}
* </head>
* `;
* }
* ```
*
*/
function getTraceMetaTags(traceData$1) {
return Object.entries(traceData$1 || traceData.getTraceData())
.map(([key, value]) => `<meta name="${key}" content="${value}"/>`)
.join('\n');
}
exports.getTraceMetaTags = getTraceMetaTags;
//# sourceMappingURL=meta.js.map