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

11 lines
453 B
Plaintext

import { NODE_VERSION } from '../../nodeVersion.js';
import { localVariablesAsyncIntegration } from './local-variables-async.js';
import { localVariablesSyncIntegration } from './local-variables-sync.js';
const localVariablesIntegration = (options = {}) => {
return NODE_VERSION.major < 19 ? localVariablesSyncIntegration(options) : localVariablesAsyncIntegration(options);
};
export { localVariablesIntegration };
//# sourceMappingURL=index.js.map