When trying to invoke certain pages in my ionic app, I am encountering an error message that says
Uncaught (in promise): Error: No component factory found for BoxPage. Did you add it to @NgModule.entryComponents?
. Even though I have added the page details to the app.component.ts
file as import { BoxPage } from '../pages/box/box';
, the issue still persists. This problem seems to occur with newly created pages, while other pages like home, product details, and cart work fine.