UNPKG

payload

Version:

Node, React, Headless CMS and Application Framework built on Next.js

7 lines (6 loc) 290 B
/** * Utility function to determine if the code is being executed during the Next.js build process. */ export function isNextBuild() { return process.env.NEXT_PHASE === 'phase-production-build' || process.env.npm_lifecycle_event === 'build'; } //# sourceMappingURL=isNextBuild.js.map