How to prevent multiple load of pages in Ionic 2

Hello. I have got in my app many pages 25+. And in components I load templates from remote urls. After the app starts, ionic trying to load all pages at the same time. So I got 25+ queries to server before the platform is ready. So how to prevent this load. I want to make my app load only first start page, and then after click load next and etc.
How to do this?
Example:

@Component({
  templateUrl: APP_CONFIG.appDomain + '/mobilesiteapp/template/?path=app/app'
})