From fcc7c060374c3a547257d96af847352c14d6144b Mon Sep 17 00:00:00 2001 From: BO41 Date: Wed, 19 Sep 2018 18:27:10 +0200 Subject: [PATCH] rename manifest --- client/angular.json | 4 ++-- client/src/index.html | 2 +- client/src/{manifest.json => manifest.webmanifest} | 2 +- server/controllers/client.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename client/src/{manifest.json => manifest.webmanifest} (99%) diff --git a/client/angular.json b/client/angular.json index 789eeb3d0..2cf2ecd62 100644 --- a/client/angular.json +++ b/client/angular.json @@ -24,7 +24,7 @@ }, "assets": [ "src/assets/images", - "src/manifest.json" + "src/manifest.webmanifest" ], "styles": [ "src/sass/application.scss" @@ -105,7 +105,7 @@ ], "assets": [ "src/assets/images", - "src/manifest.json" + "src/manifest.webmanifest" ] } }, diff --git a/client/src/index.html b/client/src/index.html index f00af8bff..593de4ac6 100644 --- a/client/src/index.html +++ b/client/src/index.html @@ -7,7 +7,7 @@ - + diff --git a/client/src/manifest.json b/client/src/manifest.webmanifest similarity index 99% rename from client/src/manifest.json rename to client/src/manifest.webmanifest index 30914e35f..3d3c7d6d5 100644 --- a/client/src/manifest.json +++ b/client/src/manifest.webmanifest @@ -24,7 +24,7 @@ "src": "/client/assets/images/icons/icon-96x96.png", "sizes": "96x96", "type": "image/png" - }, + }, { "src": "/client/assets/images/icons/icon-144x144.png", "sizes": "144x144", diff --git a/server/controllers/client.ts b/server/controllers/client.ts index c33061289..73b40cf65 100644 --- a/server/controllers/client.ts +++ b/server/controllers/client.ts @@ -35,7 +35,7 @@ clientsRouter.use('' + // Static HTML/CSS/JS client files const staticClientFiles = [ - 'manifest.json', + 'manifest.webmanifest', 'ngsw-worker.js', 'ngsw.json' ] -- 2.25.1