Replies: 2 comments 1 reply
-
Same here. I guess, the only way now is to pass the root route ( |
Beta Was this translation helpful? Give feedback.
0 replies
-
I have a tricky solution, work both under Change <Route path="moduleOne/*" lazy={() => import('./moduleOne')} /> to <Route path="moduleOne" lazy={() => import('./moduleOne')}>
<Route path="*" />
</Route> |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
#11052
I use to modularize this way with splat route path:
After 6.20.0 broken of splat resolution,
moduleOne/subpath/a
becomesmoduleOne/subpath/a/subpath/a/subpath/a/.....
after navigated more than one time. All relative links under splat path had broken. And I relied on this buggy behavior for module reuse like this:How can I migrate after buggy behavior fixed ?
Beta Was this translation helpful? Give feedback.
All reactions