From 6aec685317f14bdf38c2128a376ed9b7c959cd6e Mon Sep 17 00:00:00 2001 From: 8kto Date: Thu, 14 Mar 2024 00:37:08 +0100 Subject: [PATCH] Disable PWA for dev server --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index f5c17a8..beae33d 100644 --- a/next.config.js +++ b/next.config.js @@ -9,7 +9,7 @@ const withPwa = require('next-pwa')({ skipWaiting: true, disableDevLogs: isProd, runtimeCaching, - //disable: !isProd, + disable: !isProd, }) const linguiConfig = require('./lingui.config')