Ionic 4 : why every page generate command creates module file and there is no cli command for generate only modules for better abstraction.
I know the difference between modules and components. modules used for lazy loading so it can load only whenever it requested only, But my question is does it required to generate module for every single page?
Ionic 4 CLI doesn't provide generate commands for custom modules like angular does.
what if i do have some static information pages which doesn't required lazy loading (separate modules for every page) for these scenario which one is the best way (for performance of the application).
-> To create a custom module manually and create components of pages OR -> Use ionic4 cli and use generate page command