I'm running Vue in development mode, and I get this message every time I load the page:
"You are running Vue in development mode. Make sure to turn on production mode when deploying for production. See more tips at https://vuejs.org/guide/deployment.html"
Is there a way to disable it without switching to production mode?
As of Vue.JS 2.2.0 the development warning can be disabled as follows:
Vue.config.productionTip = false
should be added to main.js (or main.ts if using TypeScript)
2.1m questions
2.1m answers
60 comments
57.0k users