PeerTube/client/src/main.ts

33 lines
928 B
TypeScript
Raw Normal View History

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'
import { logger } from './root-helpers'
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
}
logger.registerServerSending(environment.apiUrl)
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 => {
logger.error(err)
2018-02-22 14:15:23 +01:00
return null
})
2017-12-12 14:45:42 +01:00
bootstrap()