Hi,
bundle dev update failed: Could not resolve '../pages/settings/settings' from /Users/something/Documents/APPs/myapp/src/pages/home/home.ts
I have this error, but I can’t get where it is coming from. I added a page with CLI. Then import the class in my main page, then try to put a navCtrl.push(Settings). I guess it is this latter that crashes because if I comment it I have no error.
[...]
import { Settings } from '../pages/settings/settings';
[...]
constructor(public navCtrl: NavController){
}
gotoSettings() {
this.navCtrl.setRoot(Settings)
}
<button ion-button (click)="gotoSettings()">Settings</button>
Am I missing something? Does it have something to do with NgModule?