Disable development mode warning in VueJS

I run Vue in design mode and get this message every time the page loads:

"You run Vue in development mode. Be sure to enable production mode when deploying to production. See Additional Tips at https://vuejs.org/guide/deployment.html "

Is there a way to turn it off without switching to production mode?

+7
vuejs2
source share
1 answer

Starting with Vue.JS 2.2.0, the development warning can be disabled as follows:

Vue.config.productionTip = false

+17
source share

All Articles