mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
12 lines
375 B
TypeScript
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'));
|
|
}
|