Sometimes, we want to disable the "development mode" warning in Vue.js.
In this article, we’ll look at how to disable the "development mode" warning in Vue.js.
How to disable the "development mode" warning in Vue.js?
To disable the "development mode" warning in Vue.js, we can set Vue.config.productionTip
to false
.
For instance, we write
Vue.config.productionTip = false
to set Vue.config.productionTip
to false
.
Conclusion
To disable the "development mode" warning in Vue.js, we can set Vue.config.productionTip
to false
.