Installation
Install Nuxt Pages Plus to your Nuxt project using a single line of command using nuxi as shown below:
npx
npx nuxi module add nuxt-pages-plus
Install manually
You can add Nuxt Pages Plus to your Nuxt project by installing the nuxt-pages-plus module as shown below:
npm
npm i -D nuxt-pages-plus
Then, in your nuxt.config.ts file add nuxt-pages-plus to the modules section as shown below:
nuxt.config.ts
export default defineNuxtConfig({
modules: ['nuxt-pages-plus']
})