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
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)
If you are using VueCli and package.json file like this:
Then remove --mode development from line number 7 :
Like this : "build": "vue-cli-service build"
Open file app.js and add the next code
Vue.config.productionTip = false
Read more in Vue Api