Template TABS (No component factory found for HelloworldPageModule)

Hello all, im trying ionic for the first time.
I created a project using the template TABS and im trying to add a new page with new botton in the bottom menu.
I did this:

  1. ionic generate page helloworld

  2. In tabs-routing.module.ts i added the new route:
const routes: Routes = [
    {
        path: 'tabs',
        component: TabsPage,
        children: [
            {
                path: 'home',
                children: [
                    {
                        path: '',
                        loadChildren: () => import('../helloworld/helloworld.module').then(m => m.HelloworldPageModule)
                    }
                ]
            },
            {
                path: 'tab1',
                children: [
                    {
                        path: '',
                        loadChildren: () => import('../tab1/tab1.module').then(m => m.Tab1PageModule)
                    }
                ]
            },
            {
                path: 'tab2',
                children: [
                    {
                        path: '',
                        loadChildren: () => import('../tab2/tab2.module').then(m => m.Tab2PageModule)
                    }
                ]
            },
            {
                path: 'tab3',
                children: [
                    {
                        path: '',
                        loadChildren: () => import('../tab3/tab3.module').then(m => m.Tab3PageModule)
                    }
                ]
            },
            {
                path: '',
                redirectTo: '/tabs/home',
                pathMatch: 'full'
            }
        ]
    },
    {
        path: '',
        redirectTo: '/tabs/home',
        pathMatch: 'full'
    }
];

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

tabs.page.html

<ion-tab-button tab="home">
      <ion-icon name="home"></ion-icon>
      <ion-label>Home</ion-label>
    </ion-tab-button>

But this is the error:

I dont know. But i deleted this page, and stopped the server, i did again all like before, and now work.

Try import you module and use router by

import { HelloworldPageModule} from ‘…/helloworld/helloworld.module’; // import correctly you module


{ path: '', loadChildren: () => HelloworldPageModule }

stop and restart you ionic serve.