Skip to content

Commit f2eb4d0

Browse files
committed
Lint
1 parent 791d407 commit f2eb4d0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/pwa-kit-runtime/src/ssr/server/build-remote-server.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -603,8 +603,7 @@ export const RemoteServerFactory = {
603603
}
604604

605605
// For other routes, only proceed if path equals basePath or path starts with basePath + '/'
606-
const pathMatchesBasePath =
607-
req.path === basePath || req.path.startsWith(basePath + '/')
606+
const pathMatchesBasePath = req.path === basePath || req.path.startsWith(basePath + '/')
608607
if (!pathMatchesBasePath) {
609608
return next()
610609
}

0 commit comments

Comments
 (0)