From 515746dd590a54a63e4375ee7d570b164d30660e Mon Sep 17 00:00:00 2001 From: Flavio Silva Date: Thu, 16 Nov 2023 18:17:11 -0300 Subject: [PATCH] next.config: get withPWA() back --- next.config.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/next.config.js b/next.config.js index 63f5131..dd51fa2 100644 --- a/next.config.js +++ b/next.config.js @@ -9,10 +9,4 @@ const withPWA = require('@ducanh2912/next-pwa').default({ const withMDX = require('@next/mdx')(); -/* -module.exports = withMDX( - withPWA(nextConfig), -); -*/ - -module.exports = withMDX(nextConfig); +module.exports = withMDX(withPWA(nextConfig));