Learn more about what it means to be AI Ready in the introduction.
To get started with Nuxt AI Ready, you need to install the dependency and add it to your Nuxt config.
npx nuxt module add ai-readynpm i nuxt-ai-readyYou will need to manually add the module to your Nuxt config.
export default defineNuxtConfig({
modules: [
'nuxt-ai-ready',
],
})
yarn add nuxt-ai-readyYou will need to manually add the module to your Nuxt config.
export default defineNuxtConfig({
modules: [
'nuxt-ai-ready',
],
})
pnpm i nuxt-ai-readyYou will need to manually add the module to your Nuxt config.
export default defineNuxtConfig({
modules: [
'nuxt-ai-ready',
],
})
bun i nuxt-ai-readyYou will need to manually add the module to your Nuxt config.
export default defineNuxtConfig({
modules: [
'nuxt-ai-ready',
],
})
Nuxt AI Ready requires a Nuxt SEO Pro license to use.
NUXT_SEO_PRO_LICENSE_KEY=your-license-key-here
export default defineNuxtConfig({
seo: {
key: 'your-license-key-here'
}
})
Nuxt AI Ready works as a zero-config module, so no additional setup is required beyond installation.
You can verify certain features by checking the following:
.md to the URL (e.g., /about.md). You should see the markdown version of that page.It's recommended to perform a production build and test the features to ensure everything is working as expected.
/robots.txt shows your Content-Signal./llms.txt and /llms-full.txt are generated after build with appropriate content.You've successfully installed Nuxt AI Ready and configured it for your project.