From a26470fe68042516235e037fd445a5498b080e83 Mon Sep 17 00:00:00 2001 From: Andrea Vos Date: Sun, 11 Sep 2022 23:02:19 +0200 Subject: [PATCH] temporarily disable PWA in order to (hopefully) fix caching issues --- nuxt.config.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/nuxt.config.js b/nuxt.config.js index c73a5d8ba..8d0fbf8b1 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -144,7 +144,7 @@ export default { components: true, buildModules: [], modules: [ - '@nuxtjs/pwa', + //'@nuxtjs/pwa', '@nuxtjs/axios', ['@nuxtjs/redirect-module', { rules: config.redirects, @@ -152,16 +152,16 @@ export default { 'cookie-universal-nuxt', 'vue-plausible' ], - pwa: { - manifest: { - name: title, - short_name: title, - description: description, - background_color: '#ffffff', - theme_color: colour, - lang: locale, - } - }, + // pwa: { + // manifest: { + // name: title, + // short_name: title, + // description: description, + // background_color: '#ffffff', + // theme_color: colour, + // lang: locale, + // } + // }, plausible: { domain: process.env.PLAUSIBLE_DOMAIN || translations.domain, },