mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
4334c3deb6
- adds required dependencies to package.json and to bower.json - added required Grunt tasks to transpile and concat ember admin files
18 lines
449 B
JavaScript
Executable file
18 lines
449 B
JavaScript
Executable file
/*global Ember */
|
|
|
|
import Resolver from 'ember/resolver';
|
|
|
|
var App = Ember.Application.extend({
|
|
/**
|
|
* These are debugging flags, they are useful during development
|
|
*/
|
|
LOG_ACTIVE_GENERATION: true,
|
|
LOG_MODULE_RESOLVER: true,
|
|
LOG_TRANSITIONS: true,
|
|
LOG_TRANSITIONS_INTERNAL: true,
|
|
LOG_VIEW_LOOKUPS: true,
|
|
modulePrefix: 'ghost', // TODO: loaded via config
|
|
Resolver: Resolver['default']
|
|
});
|
|
|
|
export default App;
|