Mercurial > hg > ugly-duckling
annotate src/main.ts @ 396:3eab26a629e1
Revert changes relating to bodging unit onto the shaped features. Now return from the extraction service and add to the analysis item, and send into the cross-hair component with a prop.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Thu, 01 Jun 2017 23:04:39 +0100 |
parents | 53ea6406d601 |
children |
rev | line source |
---|---|
dev@236 | 1 import 'polyfills'; |
dev@236 | 2 import { enableProdMode } from '@angular/core'; |
dev@236 | 3 import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; |
angular-cli@0 | 4 |
dev@236 | 5 import { AppModule } from './app/app.module'; |
angular-cli@0 | 6 import { environment } from './environments/environment'; |
angular-cli@0 | 7 |
angular-cli@0 | 8 if (environment.production) { |
angular-cli@0 | 9 enableProdMode(); |
angular-cli@0 | 10 } |
angular-cli@0 | 11 |
angular-cli@0 | 12 platformBrowserDynamic().bootstrapModule(AppModule); |