You are reading Nuxt 2 docs. Head over nuxt.com for Nuxt 3 docs.

The extendPlugins Property

The extendPlugins property lets you customize Nuxt plugins. (options.plugins ).


  • Type: Function
  • Default: undefined

You may want to extend plugins or change plugins order created by Nuxt. This function accepts an array of plugin objects and should return array of plugin objects.

Example of changing plugins order:

nuxt.config.js
export default {
  extendPlugins(plugins) {
    const pluginIndex = plugins.findIndex(
      plugin => (typeof plugin === 'string' ? plugin : plugin.src) === '~/plugins/shouldBeFirst.js'
    )
    const shouldBeFirstPlugin = plugins[pluginIndex]

    plugins.splice(pluginIndex, 1)
    plugins.unshift(shouldBeFirstPlugin)

    return plugins
  }
}
Edit this page on GitHub Updated at Thu, Feb 9, 2023