We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When ssr:false is set for the client-side, the following condition causes rendering to break:
ssr:false
const isDifferentPage = context.from?.path !== route.path if (isDynamicRoute(context.route) && isDifferentPage) {
This is because context.from is always available on the client-side and, additionally, the route middleware is always called on the initial render.
context.from
It should be fixed, we should provide client only mode as well.
The text was updated successfully, but these errors were encountered:
fix: route middleware for client mode (#306)
0e393b3
72ccb6e
Successfully merging a pull request may close this issue.
When
ssr:false
is set for the client-side, the following condition causes rendering to break:This is because
context.from
is always available on the client-side and, additionally, the route middleware is always called on the initial render.It should be fixed, we should provide client only mode as well.
The text was updated successfully, but these errors were encountered: