2020-11-27 08:31:09 -06:00
|
|
|
import { ApplicationRef, enableProdMode } from '@angular/core'
|
|
|
|
import { enableDebugTools } from '@angular/platform-browser'
|
2017-12-12 04:59:28 -06:00
|
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
|
|
|
|
import { AppModule } from './app/app.module'
|
|
|
|
import { environment } from './environments/environment'
|
2017-12-11 10:36:46 -06:00
|
|
|
|
|
|
|
if (environment.production) {
|
2017-12-12 04:59:28 -06:00
|
|
|
enableProdMode()
|
2017-12-11 10:36:46 -06:00
|
|
|
}
|
|
|
|
|
2017-12-12 07:45:42 -06:00
|
|
|
const bootstrap = () => platformBrowserDynamic()
|
2020-02-07 08:51:19 -06:00
|
|
|
.bootstrapModule(AppModule)
|
2018-02-22 07:15:23 -06:00
|
|
|
.then(bootstrapModule => {
|
2020-11-27 08:31:09 -06: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 07:15:23 -06:00
|
|
|
return bootstrapModule
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
return null
|
|
|
|
})
|
2017-12-12 07:45:42 -06:00
|
|
|
|
2020-11-19 04:12:01 -06:00
|
|
|
bootstrap()
|