From 4e6b73608cccbc2c97bbf3326cd617e0d6fda595 Mon Sep 17 00:00:00 2001 From: notV4l Date: Tue, 19 Sep 2023 11:57:33 +0200 Subject: [PATCH] fix build issues --- web/next.config.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/web/next.config.js b/web/next.config.js index 2ab5317f7..fb3c08a3a 100644 --- a/web/next.config.js +++ b/web/next.config.js @@ -11,10 +11,8 @@ const nextConfig = { const withPWA = require("next-pwa"); module.exports = withPWA({ - pwa: { - dest: "public", - register: true, - skipWaiting: true, - disable:process.env.NODE_ENV === 'development' - }, + dest: "public", + register: true, + skipWaiting: true, + disable: process.env.NODE_ENV === 'development' })(nextConfig); \ No newline at end of file