ERROR Error: "Uncaught (in promise): Error: Cannot find module

Hello, I’ve been having troubles opening my default path in ionic. It opens sometimes but must times it does not.
I usually get an error: "ERROR Error: “Uncaught (in promise): Error: Cannot find module ‘…/home/home.module’”
Here is my app-routing.module.ts

import { NgModule } from '@angular/core';
import { PreloadAllModules, RouterModule, Routes } from '@angular/router';

const routes: Routes = [
  {
    path: '',
    loadChildren: () => import('./pages/tabs/tabs.module').then(m => m.TabsPageModule)
  },
  { path: 'about', loadChildren: './pages/about/about.module#AboutPageModule' },
  { path: 'credit', loadChildren: './pages/credit/credit.module#CreditPageModule' },
  { path: 'contact', loadChildren: './pages/contact/contact.module#ContactPageModule' },

];
@NgModule({
  imports: [
    RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules })
  ],
  exports: [RouterModule]
})
export class AppRoutingModule {}

Here is my tab routing module.ts:

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { TabsPage } from './tabs.page';

const routes: Routes = [
  {
    path: 'tabs',
    component: TabsPage,
    children: [
      { path: 'home', loadChildren: '../home/home.module#HomePageModule' },
      { path: 'mobile', loadChildren: '../mobile/mobile.module#MobilePageModule' },
      { path: 'bank', loadChildren: '../bank/bank.module#BankPageModule' },
      { path: 'tv', loadChildren: '../tv/tv.module#TvPageModule' },
      { path: 'global', loadChildren: '../global/global.module#GlobalPageModule' },
      { path: 'utility', loadChildren: '../utility/utility.module#UtilityPageModule' },
    ]
  },
  { path: '', redirectTo: 'tabs/home', pathMatch: 'full'}
];

@NgModule({
  imports: [RouterModule.forChild(routes)],
  exports: [RouterModule]
})
export class TabsPageRoutingModule {}

I’ve searched lots of forums to solved it, but I’ve not found a solution because the page loads sometimes and it just remains blank most time after running “ionic serve”.
What can I do to solve this. Thank you.