How to disable warnings in ionic vue

In the console I’m getting warnings like :

[Vue warn]: Failed to resolve component: ion-input

I found out to disable such warnings in a non-ionic Vue app one could use:

Vue.config.productionTip = false

Where can i do this in a Ionic Vue app?

Thanks a lot for helping.