This guide explains how to install the Nuxt AEO module in your Nuxt project.
Nuxt 3.x or higherNode.js 18.x or higherpnpm add nuxt-aeo
yarn add nuxt-aeo
npm install nuxt-aeo
bun add nuxt-aeo
nuxt.config.ts:export default defineNuxtConfig({
modules: ['nuxt-aeo'],
})
This page includes FAQPage Schema to help AI models and search engines understand common questions about installing the Nuxt AEO module.
<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>