Files
klz-cables.com/.pnpm-store/v10/files/05/fd833438c1849ff9b578fa44626789cd67c9b7ec543721c5b34656ce1a059a009091384f0fc4d9a2fb769e482c468d02037e97930b2683c4fe9a61e224fde1
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

24 lines
710 B
Plaintext

Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const core = require('@sentry/core');
/**
* This is a shim for the Unleash integration.
* We need this in order to not throw runtime errors when accidentally importing this on the server through a meta framework like Next.js.
*/
const unleashIntegrationShim = core.defineIntegration((_options) => {
if (!core.isBrowser()) {
core.consoleSandbox(() => {
// eslint-disable-next-line no-console
console.warn('The unleashIntegration() can only be used in the browser.');
});
}
return {
name: 'Unleash',
};
});
exports.unleashIntegrationShim = unleashIntegrationShim;
//# sourceMappingURL=unleash.js.map