From 49d083523614f1331ca6b0924577b99e61e99f16 Mon Sep 17 00:00:00 2001 From: Alex Maras Date: Wed, 29 Jun 2022 21:11:03 +0800 Subject: [PATCH] fix: disable workbox to prevent failure with service worker --- client/nuxt.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/nuxt.config.js b/client/nuxt.config.js index 132f0146..0d0e4a78 100644 --- a/client/nuxt.config.js +++ b/client/nuxt.config.js @@ -120,6 +120,9 @@ module.exports = { sizes: "512x512" } ] + }, + workbox: { + enabled: false, } },