The vue.config Property
- Type:
Object - Default:
{ silent: !isDev, performance: isDev }
The vue.config property provides a direct configuration bridge for the
Vue.config
Example
nuxt.config.js
export default {
vue: {
config: {
productionTip: true,
devtools: false
}
}
}
This configuration will lead to the following Vue.config:
Vue.config.productionTip // true
Vue.config.devtools // false
Vue.config.silent // !isDev [default value]
Vue.config.performance // isDev [default value]
To learn more about the Vue.config API, check out the official Vue documentation
Contributors
Sébastien Chopin
Debbie O'Brien
Benjamin Canac
fgiraud
Sergey Bedritsky
Alba Silvente Fuentes
Alexander Lichter
Krutie Patel
Daniel Roe
pooya parsa
Pim
Ahad Birang
Caught a mistake or want to contribute to the documentation? Edit this page on GitHub!
