mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
9 lines
155 B
JavaScript
9 lines
155 B
JavaScript
import Ember from 'ember';
|
|
function configureApp(App) {
|
|
if (!App instanceof Ember.Application) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
export default configureApp;
|