I try to generate page via CLi function :
ionic g page Home
But when i launch the app, i get this error :
Module ‘“C:/Users/T4GAD4/Documents/IONIC/CellarWine/src/pages/home/homr”’ has no exported member ‘Home’.
I already put this in app.components import { Home} from '../pages/home/home'; this.pages = [ { title: 'Home', component: Home} ];
and module : import { Home} from '../pages/home/home';
when generating a new page, it will automatically name the class like so HomePage
you will also have to add the page to the app.module.ts file by importing the page, then adding it to the declarations and the entryComponents as the CLI does not do this