From 0536f1e43a231d79ea602a042d38f540a4aed5e2 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 28 Jun 2022 15:18:05 -0500 Subject: [PATCH] ServiceWorker: p --> path --- webpack/production.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack/production.js b/webpack/production.js index b2c98093b..39ce1d663 100644 --- a/webpack/production.js +++ b/webpack/production.js @@ -114,7 +114,7 @@ module.exports = merge(sharedConfig, { ]; if (pathname) { - return backendRoutes.some(p => pathname.startsWith(p)); + return backendRoutes.some(path => pathname.startsWith(path)); } else { return false; }