🔧 (pwa) test minimal-ui display

This commit is contained in:
Julien Calixte
2020-05-21 07:16:38 +02:00
parent da5d518e90
commit 71e68daf48

View File

@@ -1,10 +1,16 @@
module.exports = { module.exports = {
pwa: { pwa: {
themeColor: '#3f4fa6', themeColor: '#3f4fa6',
msTileColor: '#3f4fa6', msTileColor: '#3f4fa6',,
workboxOptions: {
skipWaiting: true,
clientsClaim: true
},
name: 'Vaquant',
manifestOptions: { manifestOptions: {
background_color: '#3f4fa6', background_color: '#3f4fa6',
theme_color: '#3f4fa6', theme_color: '#3f4fa6',
display: 'minimal-ui',
icons: [ icons: [
{ {
src: './img/icons/android-chrome-192x192.png', src: './img/icons/android-chrome-192x192.png',
@@ -67,11 +73,6 @@ module.exports = {
type: 'image/png' type: 'image/png'
} }
] ]
}, }
workboxOptions: {
skipWaiting: true,
clientsClaim: true
},
name: 'Vaquant'
} }
} }