From b13cf32cf73367a4c9f86aed8618ad84dcca255f Mon Sep 17 00:00:00 2001 From: pheralb Date: Mon, 8 Aug 2022 22:22:37 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=92=EF=B8=8F=20Fix=20next.config.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index d77ef68..9fbf65a 100644 --- a/next.config.js +++ b/next.config.js @@ -1,7 +1,7 @@ /** @type {import('next').NextConfig} */ const withPWA = require("next-pwa"); -module.exports = withPWA({ +const nextConfig = withPWA({ reactStrictMode: true, pwa: { dest: "public", @@ -10,3 +10,5 @@ module.exports = withPWA({ disable: process.env.NODE_ENV === "development", }, }); + +module.exports = nextConfig;