Prod Build throws Undefined Provider Error

I had the same issue, on my case i removed “storage” from providers
@NgModule({
providers: [ storage, … ]
})
in app.module.ts

NOTE since @ionic/storage 2.x.x
we import
IonicStorageModule instead of storage

3 Likes