mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05: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;
|