27bb03bbc0
* adding copyright header * fix fmt and a test
17 lines
332 B
JavaScript
17 lines
332 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import config from '../config/environment';
|
|
|
|
export default {
|
|
name: 'ember-inspect-disable',
|
|
initialize: function () {
|
|
if (config.environment === 'production') {
|
|
// disables ember inspector
|
|
window.NO_EMBER_DEBUG = true;
|
|
}
|
|
},
|
|
};
|