mirror of
https://github.com/TryGhost/Ghost-Admin.git
synced 2023-12-14 02:33:04 +01:00
16 lines
355 B
JavaScript
16 lines
355 B
JavaScript
import Ember from 'ember';
|
|
function configureApp(App) {
|
|
if (!App instanceof Ember.Application) {
|
|
return;
|
|
}
|
|
|
|
App.reopen({
|
|
LOG_ACTIVE_GENERATION: true,
|
|
LOG_MODULE_RESOLVER: true,
|
|
LOG_TRANSITIONS: true,
|
|
LOG_TRANSITIONS_INTERNAL: true,
|
|
LOG_VIEW_LOOKUPS: true
|
|
});
|
|
}
|
|
|
|
export default configureApp;
|