I recently created a frontend project with Ionic 4 and Angular 7 to learn the changes from NavController to Angular routing. The initial project from calling ionic start was a tabs project, but I created a blank page through ionic generate called Login. In the initial app-routing.module.ts file, the routes array had a blank path leading to the tabs page.
However, after launching the app to the login page, I tried to change the URL to /tabs but the app loaded nothing. I’m wondering what could be causing this lack of page rendering as a result of my changing the routes.
Well, my understanding is that by changing the route directly in the url (i.e. localhost:4200/login to localhost:4200/tabs), it should allow the reroute from the login page to the tabs section. If I am wrong, please correct me.