2020-11-27 15:31:09 +01:00
|
|
|
import { ApplicationRef, enableProdMode } from '@angular/core'
|
|
|
|
import { enableDebugTools } from '@angular/platform-browser'
|
2017-12-12 11:59:28 +01:00
|
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
|
|
|
|
import { AppModule } from './app/app.module'
|
|
|
|
import { environment } from './environments/environment'
|
2017-12-11 17:36:46 +01:00
|
|
|
|
|
|
|
if (environment.production) {
|
2017-12-12 11:59:28 +01:00
|
|
|
enableProdMode()
|
2017-12-11 17:36:46 +01:00
|
|
|
}
|
|
|
|
|
2017-12-12 14:45:42 +01:00
|
|
|
const bootstrap = () => platformBrowserDynamic()
|
2020-02-07 15:51:19 +01:00
|
|
|
.bootstrapModule(AppModule)
|
2018-02-22 14:15:23 +01:00
|
|
|
.then(bootstrapModule => {
|
2020-11-27 15:31:09 +01:00
|
|
|
if (!environment.production) {
|
|
|
|
const applicationRef = bootstrapModule.injector.get(ApplicationRef)
|
|
|
|
const componentRef = applicationRef.components[0]
|
|
|
|
|
|
|
|
// allows to run `ng.profiler.timeChangeDetection();`
|
|
|
|
enableDebugTools(componentRef)
|
|
|
|
}
|
|
|
|
|
2018-02-22 14:15:23 +01:00
|
|
|
return bootstrapModule
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
return null
|
|
|
|
})
|
2017-12-12 14:45:42 +01:00
|
|
|
|
2020-11-19 11:12:01 +01:00
|
|
|
bootstrap()
|