how i can use dynamic menu in metronic 8
with metronic 7 there is a dynamic-header-menu.config.ts/dynamic-aside-menu.config.ts, but i can't find them in metronic 8
Hi,
In Metronic 8, the menu files are located in the following paths:
/src/app/_metronic/layout/components/aside/aside-menu/aside-menu.component.html
/src/app/_metronic/layout/components/header/header-menu/header-menu.component.html
Unlike in Metronic 7, there are no separate config files for the dynamic menu. Instead, the menu is hardcoded as an HTML file. You can customize the menu based on your needs by modifying the HTML file directly.
Thanks