Setup
Check the Nuxt.js documentation for more information about installing and using modules in Nuxt.js.
Installation
Add @nuxtjs/xxx dependency to your project:
yarn add @nuxtjs/xxx
npm install @nuxtjs/xxx
Then, add @nuxtjs/xxx to the modules section of nuxt.config.js:
nuxt.config.js
{
modules: [
'@nuxtjs/xxx'
],
xxx: {
// Options
}
}