Install Nuxt SEO Utils
Get started with Nuxt SEO Utils by installing the dependency to your project.
Nuxt SEO Pro
- Nuxt Redirects
- Nuxt Google Search Console
- Nuxt Internal Links
- Nuxt SEO Analyze
Save $170 on the presale now.
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-og-image',
],
})
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-og-image',
],
})
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-og-image',
],
})
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-og-image',
],
})
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?