mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
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;
|
|
}
|
|
},
|
|
};
|