Closed Alxandr closed 9 years ago
This allows for the following code-pattern:
import {bootstrap} from 'aurelia-bootstrapper'; bootstrap(aurelia => { aurelia.use .defaultBindingLanguage() .defaultResources() .router() .eventAggregator(); aurelia.start().then(a => a.setRoot('lib/app/app', document.body)); });
In this case, you would not add aurelia-app or aurelia-main to your html, rather you would just load your main module.
aurelia-app
aurelia-main
main
Would you mind letting me know when this is released?
This allows for the following code-pattern:
In this case, you would not add
aurelia-app
oraurelia-main
to your html, rather you would just load yourmain
module.