I have the following structure:
-AppModule
--AdminModule
---HomepageModule
How I can create a component HomepageModule Component?
I tried:
ng g c admin/homepage/my-new-component
ng g c admin/homepage/my-new-component --module homepage
I get the following error:
Error: More than one module matches. Use skip-import option to skip importing the component into the closes
t module.
More than one module matches. Use skip-import option to skip importing the component into the closest modul
e.
Any idea?