mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
16 lines
328 B
JavaScript
16 lines
328 B
JavaScript
|
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;
|