From 4a9b01592a963558a095e46bb74e9024453c75e1 Mon Sep 17 00:00:00 2001 From: Steve Ruiz Date: Sat, 12 Jun 2021 14:35:30 +0100 Subject: [PATCH] Update next.config.js --- next.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index dddddd872..4c4a54236 100644 --- a/next.config.js +++ b/next.config.js @@ -2,7 +2,8 @@ const withPWA = require('next-pwa') module.exports = withPWA({ pwa: { - disable: process.env.NODE_ENV === 'development', dest: 'public', + scope: '/', + disable: process.env.NODE_ENV === 'development', }, })