Installation

How to install and configure the Nuxt AEO module

This guide explains how to install the Nuxt AEO module in your Nuxt project.

Requirements

  • Nuxt 3.x or higher
  • Node.js 18.x or higher

Installation

pnpm add nuxt-aeo
  1. Add the module to nuxt.config.ts:
nuxt.config.ts
export default defineNuxtConfig({
  modules: ['nuxt-aeo'],
})

Frequently Asked Questions

This page includes FAQPage Schema to help AI models and search engines understand common questions about installing the Nuxt AEO module.

pages/example.vue
<script setup lang="ts">
useSchemaFaq({
  mainEntity: [
    {
      name: 'What are the installation requirements?',
      acceptedAnswer: {
        text: 'To install the Nuxt AEO module, you need Nuxt 3.x or higher and Node.js 18.x or higher.',
      },
    },
    {
      name: 'Which package manager should I use?',
      acceptedAnswer: {
        text: 'All major package managers are supported, including pnpm, yarn, npm, and bun. You can use whichever package manager your project uses.',
      },
    },
    {
      name: 'Can I use it immediately after installation?',
      acceptedAnswer: {
        text: 'Yes, you can use it immediately after installation by adding the module to nuxt.config.ts. A default Project Schema will be automatically injected without additional configuration.',
      },
    },
  ],
})
</script>

Question List

  • What are the installation requirements?: Nuxt 3.x or higher, Node.js 18.x or higher required
  • Which package manager should I use?: All major package managers are supported (pnpm, yarn, npm, bun)
  • Can I use it immediately after installation?: Yes, you can use it immediately after installation, and a default Project Schema will be automatically injected

Next Steps