You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
406 B
18 lines
406 B
import Ember from 'ember'; |
|
import Resolver from './resolver'; |
|
import loadInitializers from 'ember-load-initializers'; |
|
import config from './config/environment'; |
|
|
|
let App; |
|
|
|
Ember.MODEL_FACTORY_INJECTIONS = true; |
|
|
|
App = Ember.Application.extend({ |
|
modulePrefix: config.modulePrefix, |
|
podModulePrefix: config.podModulePrefix, |
|
Resolver |
|
}); |
|
|
|
loadInitializers(App, config.modulePrefix); |
|
|
|
export default App;
|
|
|