I’m trying to port my app to Ionic3 Beta 2 with the help of this docs.
I did every step, but when I try to push to a lazy loaded page I get the following error:
Error: Cannot find module '..pagesloginlogin.module'.
I watched at the code in chrome debugger and it seems like the function is searching for the wrong module.
The map of modules looks like this:
var map = {
"..\\pages\\login\\login.module": [
226
],
...
}
But the function looks up for ..pagesloginlogin.module
, which cannot be found in the map.
Ionic info:
Ionic Framework Version: 3.0.0-beta.2
Ionic CLI Version: 2.2.1
Ionic App Lib Version: 2.2.0
Ionic App Scripts Version: 1.2.2
ios-deploy version: Not installed
ios-sim version: Not installed
OS: Windows 10
Node Version: v7.6.0
Has anyone successfully ported their app to v3? Has anyone experienced a similar issue?