I have probably a problem with this.nav.push in Ionic. I have done a login/registration page but when I login, I get this error message. I have to add some code
this.nav.push
The only problem in your code is when you write this.nav.push('HomePage'); remove the ' ' quotes when calling any page, and write like this.
this.nav.push('HomePage');
this.nav.push(HomePage); without quotes.
this.nav.push(HomePage);
Above answer is for ionic2, in ionic3 there is lazy loading where you call like this this.nav.push('HomePage');