]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/main.ts
Translated using Weblate (Russian)
[github/Chocobozzz/PeerTube.git] / client / src / main.ts
... / ...
CommitLineData
1import { ApplicationRef, enableProdMode } from '@angular/core'
2import { enableDebugTools } from '@angular/platform-browser'
3import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
4import { AppModule } from './app/app.module'
5import { environment } from './environments/environment'
6import { logger } from './root-helpers'
7
8if (environment.production) {
9 enableProdMode()
10}
11
12logger.registerServerSending(environment.apiUrl)
13
14const bootstrap = () => platformBrowserDynamic()
15 .bootstrapModule(AppModule)
16 .then(bootstrapModule => {
17 if (!environment.production) {
18 const applicationRef = bootstrapModule.injector.get(ApplicationRef)
19 const componentRef = applicationRef.components[0]
20
21 // allows to run `ng.profiler.timeChangeDetection();`
22 enableDebugTools(componentRef)
23 }
24
25 return bootstrapModule
26 })
27 .catch(err => {
28 logger.error(err)
29 return null
30 })
31
32bootstrap()