Getting Started
Install Nuxt SEO Utils
Last updated by
Harlan Wilton
in doc: cleaning up install
Co-Authored-By: Claude <noreply@anthropic.com>. 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',
],
})
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?