Getting Started
Install Nuxt SEO Utils
Last updated by
Harlan Wilton
in doc: misc improvements. Module Setup
bash
npx nuxi module add nuxt-seo-utils
bash
npm i nuxt-seo-utils
You 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-utils
You 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-utils
You 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-utils
You will need to manually add the module to your Nuxt config.
nuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-seo-utils',
],
})
Previewing Changes
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?