Hi,
Is there a way for navbar and sidebar elements to use their own module? if yes, this will allow us to test each element separately.
For serving standalone micro app to be included in shell.
navbar
npm run start:micro-app -- --port=4201
sidebar
npm run start:micro-app -- --port=4202
Lazy loading in shell
<navbar-cmp *axLazyElement="http://localhost:4201/main.js"></navbar-cmp>
<sidebar-cmp *axLazyElement="http://localhost:4202/main.js"></sidebar-cmp>
Any advice here?