You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for repo. After some playing with project I realized we do not need endsWithlogic in router Problem:
Because it is not going to work with params. For example, we can not march a/:id with { matcher: endsWith('a'), component: AComponent}. Solution:
Instead of endsWith
Hi, thanks for repo. After some playing with project I realized we do not need
endsWithlogic
in routerProblem:
Because it is not going to work with params. For example, we can not march
a/:id
with{ matcher: endsWith('a'), component: AComponent}
.Solution:
Instead of endsWith
We can just use like below:
I made sample PR which includes those small changes + feature with router params.
https://github.com/manfredsteyer/multi-framework-micro-frontend/pull/4/files
But nevertheless I think I can miss something, @manfredsteyer could you tell please why you chose endsWith?
Thanks in advance.
The text was updated successfully, but these errors were encountered: