From 71e68daf483bbbd49585051b31d3e638f5f7fc35 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Thu, 21 May 2020 07:16:38 +0200 Subject: [PATCH] :wrench: (pwa) test minimal-ui display --- vue.config.js | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/vue.config.js b/vue.config.js index 6852ab1..ca7ebca 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,10 +1,16 @@ module.exports = { pwa: { themeColor: '#3f4fa6', - msTileColor: '#3f4fa6', + msTileColor: '#3f4fa6',, + workboxOptions: { + skipWaiting: true, + clientsClaim: true + }, + name: 'Vaquant', manifestOptions: { background_color: '#3f4fa6', theme_color: '#3f4fa6', + display: 'minimal-ui', icons: [ { src: './img/icons/android-chrome-192x192.png', @@ -67,11 +73,6 @@ module.exports = { type: 'image/png' } ] - }, - workboxOptions: { - skipWaiting: true, - clientsClaim: true - }, - name: 'Vaquant' + } } }