1
0
Fork 0
peertube/client/src/main.ts

33 lines
928 B
TypeScript
Raw Normal View History

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