dev.mjs 358 B

1234567891011121314
  1. "use strict";
  2. /**
  3. * @license
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * Ensure process.env.NODE_ENV is set even when not running under Webpack or
  8. * Node. Terser will strip this out of production binaries.
  9. */
  10. /*#__PURE__*/ (() => {
  11. if (typeof process === 'undefined') {
  12. window.process = { env: { NODE_ENV: 'development' } };
  13. }
  14. })();