Files
JavaScriptServices/templates/AureliaSpa/ClientApp/boot.ts
2016-10-28 11:16:21 +01:00

12 lines
375 B
TypeScript

import { Aurelia } from 'aurelia-framework';
import 'bootstrap/dist/css/bootstrap.css';
import 'bootstrap';
export function configure(aurelia: Aurelia) {
aurelia.use.standardConfiguration();
if (window.location.host.includes('localhost')) {
aurelia.use.developmentLogging();
}
aurelia.start().then(() => aurelia.setRoot('app/components/app/app'));
}