Getting Started
Install Nuxt SEO Utils
Setup Module
bash
npx nuxt module add nuxt-seo-utils bash
npm i nuxt-seo-utilsYou will need to manually add the module to your Nuxt config.
nuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-seo-utils',
],
})
bash
yarn add nuxt-seo-utilsYou will need to manually add the module to your Nuxt config.
nuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-seo-utils',
],
})
bash
pnpm i nuxt-seo-utilsYou will need to manually add the module to your Nuxt config.
nuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-seo-utils',
],
})
bash
bun i nuxt-seo-utilsYou will need to manually add the module to your Nuxt config.
nuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-seo-utils',
],
})
Generate an Agent Skill for this package using skilld:
npx skilld add nuxt-seo-utils
Verifying Installation
Please check the features set out in the introduction to see what the module is doing.
Most changes can be found within the Seo Meta DevTools tab or the page source.
Next Steps
Time to put the module to work:
Did this page help you?
On this page