temporarily disable PWA in order to (hopefully) fix caching issues

This commit is contained in:
Andrea Vos 2022-09-11 23:02:19 +02:00
parent fba6a70012
commit a26470fe68

View File

@ -144,7 +144,7 @@ export default {
components: true, components: true,
buildModules: [], buildModules: [],
modules: [ modules: [
'@nuxtjs/pwa', //'@nuxtjs/pwa',
'@nuxtjs/axios', '@nuxtjs/axios',
['@nuxtjs/redirect-module', { ['@nuxtjs/redirect-module', {
rules: config.redirects, rules: config.redirects,
@ -152,16 +152,16 @@ export default {
'cookie-universal-nuxt', 'cookie-universal-nuxt',
'vue-plausible' 'vue-plausible'
], ],
pwa: { // pwa: {
manifest: { // manifest: {
name: title, // name: title,
short_name: title, // short_name: title,
description: description, // description: description,
background_color: '#ffffff', // background_color: '#ffffff',
theme_color: colour, // theme_color: colour,
lang: locale, // lang: locale,
} // }
}, // },
plausible: { plausible: {
domain: process.env.PLAUSIBLE_DOMAIN || translations.domain, domain: process.env.PLAUSIBLE_DOMAIN || translations.domain,
}, },