open-nomad/ui/app/utils/fetch.js
2023-04-10 15:36:59 +00:00

19 lines
500 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import fetch from 'fetch';
import config from '../config/environment';
// The ember-fetch polyfill does not provide streaming
// Additionally, Mirage/Pretender does not support fetch
const mirageEnabled =
config.environment !== 'production' &&
config['ember-cli-mirage'] &&
config['ember-cli-mirage'].enabled !== false;
const fetchToUse = mirageEnabled ? fetch : window.fetch || fetch;
export default fetchToUse;