We have a code like this.
microfrontend-layout.html
<single-spa-router base="/">
<main>
<route default>
<h1>404 route not defined</h1>
</route>
</main>
</single-spa-router>
I would like to add a dynamic value to the 'base
' attribute. How can we achieve this?
I was looking for the same solution, couldn't find it. But I kind of solved with "System.import" parcels based on window.location.
mine is for tab UI, hope it helps