Subtle Ionic 3 gotchas: don’t import and push the page module you are trying to load lazily
With a page you want to be loaded lazily and not eagerly, don’t fall into the subtle trap of trying to push the module onto the stack rather than just the name of the module as a string.
In your page you wanted to have lazy loading, you probably added the decorator (or ionic CLI may have generated this for you):
@IonicPage()
right before:
@Component
In these … Read more