Hey there, this question is really hard to follow. In order to help us, please describe the issue you are having in full, put filenames above, what commands you are trying to run, any error messages, etc.
First off (and this is likely to get me in trouble with the real mods like @max there) I am not a huge fan of lazy loading in Angular in general, which would include routing modules. I’m sure there are app designs that are so gargantuan that all the extra complexity and maintenance tedium is justified, but I think that’s rare enough that it doesn’t warrant having this be everybody’s go-to default routing structure.
I just put all components in a single AppModule and route directly to them using component.
That being said, what I am hearing here is actually the following question:
How do I decide what the default landing page in an app should be based off of an asynchronous data source like Ionic Storage?
What I tend to do in situations like this is to use a trampoline page. In most cases (and it sounds like yours is one of these), the app component works nicely.
Naturally, this strategy should be applicable even if you do decide to stick with lazy loading, but I also wanted to assure you that it is a defensible choice to eliminate that extra complexity, at least to start out.