From b1de1d10782657bf7412160f2b88314c690e3e8c Mon Sep 17 00:00:00 2001 From: "Amir H. Khanjani" <72540492+ahkhanjani@users.noreply.github.com> Date: Sun, 7 Aug 2022 19:55:47 +0430 Subject: [PATCH] fix (examples): Changed the version of next-pwa (#39369) next-pwa verison 5.5.5 causes the app to [crash](https://github.com/shadowwalker/next-pwa/issues/370). See issue #39224 Changed the version to 5.5.4 and removed `^`. Fixes: https://github.com/vercel/next.js/issues/39383 --- examples/progressive-web-app/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/progressive-web-app/package.json b/examples/progressive-web-app/package.json index 1c8039c1130c07d..22410f1dfd2573b 100644 --- a/examples/progressive-web-app/package.json +++ b/examples/progressive-web-app/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "next": "latest", - "next-pwa": "^5.4.1", + "next-pwa": "5.5.4", "react": "^17.0.2", "react-dom": "^17.0.2" },