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












잘못된 부분이 있거나 이 문서에 기여하고 싶으신가요? GitHub에서 이 페이지를 수정해주세요!