| author | ymh <ymh.work@gmail.com> |
| Wed, 13 Sep 2017 22:19:48 +0200 | |
| changeset 544 | ad58d7627f70 |
| parent 543 | aaaf9b0b09f6 |
| permissions | -rw-r--r-- |
| 4 | 1 |
import Ember from 'ember'; |
| 136 | 2 |
import Resolver from './resolver'; |
|
118
dbcacab69cfc
upgrade ember version to v2.3.1 for bo-client
ymh <ymh.work@gmail.com>
parents:
32
diff
changeset
|
3 |
import loadInitializers from 'ember-load-initializers'; |
| 4 | 4 |
import config from './config/environment'; |
5 |
||
| 543 | 6 |
const App = Ember.Application.extend({ |
|
305
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
7 |
modulePrefix: config.modulePrefix, |
|
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
8 |
podModulePrefix: config.podModulePrefix, |
|
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
9 |
Resolver, |
|
ff6cf3fc5f40
api reorganisation and propagation if the changes + some code cleaning
ymh <ymh.work@gmail.com>
parents:
168
diff
changeset
|
10 |
rootElement: '#ember-container' |
| 4 | 11 |
}); |
12 |
||
13 |
loadInitializers(App, config.modulePrefix); |
|
14 |
||
15 |
export default App; |