From 93df58cc4865af9046d2b31e03fa37d3ae54e45b Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 22 Feb 2018 11:54:17 +0100 Subject: [PATCH] Fix service worker registration --- client/.angular-cli.json | 7 +------ client/src/environments/environment.ts | 1 - client/src/index.html | 2 ++ client/src/manifest.json | 4 ++-- server/controllers/client.ts | 2 ++ 5 files changed, 7 insertions(+), 9 deletions(-) diff --git a/client/.angular-cli.json b/client/.angular-cli.json index 3bdc50492..643e1b319 100644 --- a/client/.angular-cli.json +++ b/client/.angular-cli.json @@ -14,12 +14,7 @@ "output": "./client/assets/images", "allowOutsideOutDir": false }, - { - "glob": "", - "input": "./manifest.json", - "output": "./manifest.json", - "allowOutsideOutDir": false - } + "./manifest.json" ], "deployUrl": "client/", "index": "index.html", diff --git a/client/src/environments/environment.ts b/client/src/environments/environment.ts index 42b8baee8..364da6745 100644 --- a/client/src/environments/environment.ts +++ b/client/src/environments/environment.ts @@ -1,4 +1,3 @@ -// The file contents for the current environment will overwrite these during build. // The build system defaults to the dev environment which uses `environment.ts`, but if you do // `ng build --env=prod` then `environment.prod.ts` will be used instead. // The list of which env maps to which file can be found in `.angular-cli.json`. diff --git a/client/src/index.html b/client/src/index.html index 8ff89f6a4..a824a39e2 100644 --- a/client/src/index.html +++ b/client/src/index.html @@ -7,6 +7,8 @@ + + diff --git a/client/src/manifest.json b/client/src/manifest.json index 53cfa40c5..707efb973 100644 --- a/client/src/manifest.json +++ b/client/src/manifest.json @@ -1,6 +1,6 @@ { - "background_color": "white", - "theme_color": "black", + "background_color": "#fff", + "theme_color": "#fff", "description": "A federated video streaming platform using P2P", "display": "standalone", "orientation": "any", diff --git a/server/controllers/client.ts b/server/controllers/client.ts index f07e421b4..f5124c55b 100644 --- a/server/controllers/client.ts +++ b/server/controllers/client.ts @@ -12,6 +12,7 @@ const clientsRouter = express.Router() const distPath = join(root(), 'client', 'dist') const assetsImagesPath = join(root(), 'client', 'dist', 'client', 'assets', 'images') const manifestPath = join(root(), 'client', 'dist', 'manifest.json') +const serviceWorkerPath = join(root(), 'client', 'dist', 'ngsw-worker.js') const embedPath = join(distPath, 'standalone', 'videos', 'embed.html') const indexPath = join(distPath, 'index.html') @@ -27,6 +28,7 @@ clientsRouter.use('/videos/embed', (req: express.Request, res: express.Response, // Static HTML/CSS/JS client files clientsRouter.use('/manifest.json', express.static(manifestPath, { maxAge: STATIC_MAX_AGE })) +clientsRouter.use('/ngsw-worker.js', express.static(serviceWorkerPath, { maxAge: STATIC_MAX_AGE })) clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE })) clientsRouter.use('/client/assets/images', express.static(assetsImagesPath, { maxAge: STATIC_MAX_AGE }))