diff --git a/cheatfiles/Aurelia.md b/cheatfiles/Aurelia.md index c90e16f..a4f400a 100644 --- a/cheatfiles/Aurelia.md +++ b/cheatfiles/Aurelia.md @@ -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';