@krisdages/aurelia-bootstrap
Version:
Bootstrap components written in Aurelia.
20 lines (15 loc) • 656 B
JavaScript
import "fetch";
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('aurelia-syntax-highlighter')
.plugin('aurelia-bootstrap')
.feature('resources');
//Uncomment the line below to enable animation.
//aurelia.use.plugin('aurelia-animator-css');
//if the css animator is enabled, add swap-order="after" to all router-view elements
//Anyone wanting to use HTMLImports to load views, will need to install the following plugin.
//aurelia.use.plugin('aurelia-html-import-template-loader')
aurelia.start().then(() => aurelia.setRoot());
}