Files
klz-cables.com/.pnpm-store/v10/files/36/6a7915fd2f6d23ce56c55c001b822e0048bb0ad73b92e5e33cdfe5285404b830de23a28366adf94541e91d28c4f109e865fbe6065b5969a284a6f73b1191e4
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

12 lines
301 B
Plaintext

import { PHASE_PRODUCTION_BUILD } from 'next/constants';
/**
* Decide if the currently running process is part of the build phase or happening at runtime.
*/
function isBuild() {
return process.env.NEXT_PHASE === PHASE_PRODUCTION_BUILD;
}
export { isBuild };
//# sourceMappingURL=isBuild.js.map