I was working on page navigation in Ionic. After using ionic serve, I got this error:
ionic serve
The Page with .ts extension has a @IonicPage decorator, but
This is because @IonicPage() decorator is utilized for deep linking and lazy loading, so to implement that, you need a dedicated module to load all the required components for that page. Take a look at the Ionic docs:
@IonicPage API docs