]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/main.ts
Fix button height
[github/Chocobozzz/PeerTube.git] / client / src / main.ts
CommitLineData
68f6c87a
C
1import { ApplicationRef, enableProdMode } from '@angular/core'
2import { enableDebugTools } from '@angular/platform-browser'
b6827820 3import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
b6827820
C
4import { AppModule } from './app/app.module'
5import { environment } from './environments/environment'
42b40636 6import { logger } from './root-helpers'
63c4db6d
C
7
8if (environment.production) {
b6827820 9 enableProdMode()
63c4db6d
C
10}
11
42b40636
C
12logger.registerServerSending(environment.apiUrl)
13
77d07d69 14const bootstrap = () => platformBrowserDynamic()
361dcebc 15 .bootstrapModule(AppModule)
78967fca 16 .then(bootstrapModule => {
68f6c87a
C
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
78967fca
C
25 return bootstrapModule
26 })
27 .catch(err => {
92a6e85f
C
28 try {
29 logger.error(err)
30 } catch (err2) {
31 console.error('Cannot log error', { err, err2 })
32 }
33
34 // Ensure we display an "incompatible message" on Angular bootstrap error
35 setTimeout(() => {
36 if (document.querySelector('my-app').innerHTML === '') {
37 throw err
38 }
39 }, 1000)
40
78967fca
C
41 return null
42 })
77d07d69 43
4f926722 44bootstrap()