mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-06 21:48:05 +00:00
12 lines
253 B
JavaScript
12 lines
253 B
JavaScript
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;
|
|
}
|
|
},
|
|
};
|