aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/app.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-02-22 14:15:23 +0100
committerChocobozzz <me@florianbigard.com>2018-02-22 14:15:23 +0100
commit78967fca4cacbc247fa6fb62d64b2d6825a10804 (patch)
treef063a82b0658005e3d5ce23648333805782155ed /client/src/app/app.module.ts
parent93df58cc4865af9046d2b31e03fa37d3ae54e45b (diff)
downloadPeerTube-78967fca4cacbc247fa6fb62d64b2d6825a10804.tar.gz
PeerTube-78967fca4cacbc247fa6fb62d64b2d6825a10804.tar.zst
PeerTube-78967fca4cacbc247fa6fb62d64b2d6825a10804.zip
Register service worker
Diffstat (limited to 'client/src/app/app.module.ts')
-rw-r--r--client/src/app/app.module.ts6
1 files changed, 1 insertions, 5 deletions
diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts
index 34114b60b..cae99786b 100644
--- a/client/src/app/app.module.ts
+++ b/client/src/app/app.module.ts
@@ -1,11 +1,9 @@
1import { NgModule } from '@angular/core' 1import { NgModule } from '@angular/core'
2import { BrowserModule } from '@angular/platform-browser' 2import { BrowserModule } from '@angular/platform-browser'
3import { ServiceWorkerModule } from '@angular/service-worker'
4import { AboutModule } from '@app/about' 3import { AboutModule } from '@app/about'
5import { ResetPasswordModule } from '@app/reset-password' 4import { ResetPasswordModule } from '@app/reset-password'
6 5
7import { MetaLoader, MetaModule, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core' 6import { MetaLoader, MetaModule, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core'
8import { environment } from '../environments/environment'
9 7
10import { AccountModule } from './account' 8import { AccountModule } from './account'
11 9
@@ -60,9 +58,7 @@ export function metaFactory (): MetaLoader {
60 MetaModule.forRoot({ 58 MetaModule.forRoot({
61 provide: MetaLoader, 59 provide: MetaLoader,
62 useFactory: (metaFactory) 60 useFactory: (metaFactory)
63 }), 61 })
64
65 ServiceWorkerModule.register('/ngsw-worker.js', { enabled: environment.production })
66 ], 62 ],
67 providers: [ ] 63 providers: [ ]
68}) 64})