mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03: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;
|