We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 791d407 commit f2eb4d0Copy full SHA for f2eb4d0
packages/pwa-kit-runtime/src/ssr/server/build-remote-server.js
@@ -603,8 +603,7 @@ export const RemoteServerFactory = {
603
}
604
605
// 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 + '/')
+ const pathMatchesBasePath = req.path === basePath || req.path.startsWith(basePath + '/')
608
if (!pathMatchesBasePath) {
609
return next()
610
0 commit comments