You are browsing Nuxt 2 docs. Go to Nuxt 3 docs, or learn more about Nuxt 2 Long Term Support.

The vue.config property

A config object for Vue.config


  • 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