isBuild.js 370 B

12345678910111213
  1. Object.defineProperty(exports, '__esModule', { value: true });
  2. const constants = require('next/constants');
  3. /**
  4. * Decide if the currently running process is part of the build phase or happening at runtime.
  5. */
  6. function isBuild() {
  7. return process.env.NEXT_PHASE === constants.PHASE_PRODUCTION_BUILD;
  8. }
  9. exports.isBuild = isBuild;
  10. //# sourceMappingURL=isBuild.js.map