X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fmain.ts;h=432db0eacb92557bae45f4958efdd7f416854916;hb=91a4893063402d7beabb3104f9b989b8f88b6038;hp=99976a3f71673cfec908da725db77c9c1f0f6a27;hpb=dfdd158a75d91208a8444a8bad1663ca3bafe299;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/main.ts b/client/src/main.ts index 99976a3f7..432db0eac 100644 --- a/client/src/main.ts +++ b/client/src/main.ts @@ -3,19 +3,17 @@ import { enableDebugTools } from '@angular/platform-browser' import { platformBrowserDynamic } from '@angular/platform-browser-dynamic' import { AppModule } from './app/app.module' import { environment } from './environments/environment' +import { logger } from './root-helpers' if (environment.production) { enableProdMode() } +logger.registerServerSending(environment.apiUrl) + const bootstrap = () => platformBrowserDynamic() .bootstrapModule(AppModule) .then(bootstrapModule => { - if ('serviceWorker' in navigator && environment.production) { - navigator.serviceWorker.register('/ngsw-worker.js') - .catch(err => console.error('Cannot register service worker.', err)) - } - if (!environment.production) { const applicationRef = bootstrapModule.injector.get(ApplicationRef) const componentRef = applicationRef.components[0] @@ -27,7 +25,7 @@ const bootstrap = () => platformBrowserDynamic() return bootstrapModule }) .catch(err => { - console.error(err) + logger.error(err) return null })