This commit is contained in:
Donnelly 2017-03-28 11:15:44 +01:00
parent 108a365717
commit 736beecd7a

View File

@ -19,6 +19,7 @@
> Currently, the Edge browser has a serious performance problem with its Promise implementation. This deficiency can greatly increase startup time of your app. If you are targeting the Edge browser, it is highly recommended that you use the [bluebird promise](http://bluebirdjs.com/docs/getting-started.html) library to replace Edge's native implementation. You can do this by simply referencing the library prior to loading system.js.
### Standard Startup Configuration
```javascript
export function configure(aurelia) {
aurelia.use
@ -28,7 +29,7 @@
aurelia.start().then(() => aurelia.setRoot());
}
```
---
```typescript
import {Aurelia} from 'aurelia-framework';