Home > database >  Unable to create a new page IONIC 6
Unable to create a new page IONIC 6

Time:03-10

I updated my project from ionic 4 to 6 and after fixing everything. not able to create a new page using ionic generate page

but it shows an error

An unhandled exception occurred: Package "@ionic/cordova-builders" was found but does not support schematics.

by far I've already deleted node_modules and intstalled all the packages again.

unable to figure out the issue.

CodePudding user response:

Try using @ionic/angular-toolkit for the schematics.

{ 
  "cli": {
    "defaultCollection": "@ionic/angular-toolkit"
  },
}
  • Related