The All-In-One SEO Layer for Nuxt 3.
Status: v1 Released Please report any issues π Made possible by my Sponsor Program π Follow me @harlan_zw π¦ β’ Join Discord for help |
Nuxt SEO Kit v2 (Nuxt SEO) is in active development and close to the beta.
If you'd like to be the first to try it out, join my Discord server and mention it.
Configuring SEO for Nuxt is a lot of work; it requires installing many modules, configuring them all separately and then figuring out all the meta tags.
What if there was an easier way?
Introducing Nuxt SEO Kit, the all-in-one SEO module for Nuxt 3. Combining all of my SEO modules and the best practices into one, it's the easiest and quickest way to improve your apps SEO.
- π nuxt-simple-sitemap - Sitemap.xml Support
- π€ nuxt-simple-robots - Manage site crawling
- π nuxt-schema-org - Generate Schema.org JSON-LD for SEO
- β³ nuxt-seo-experiments - Experimental SEO meta features
- πΌοΈ nuxt-og-image - Generate dynamic social share images
- β nuxt-link-checker - Check for broken links
π€ Search engine visibility solved
- Get the right content crawled with robot rules (robots.txt, HTTP header, meta tags)
- Let search engines find your content (sitemap.xml)
- Structured data for rich search results (Schema.org)
- Automatic canonical URLs
π Enhanced Social Sharing
- Generate dynamic or static screen social share images
- Automatic opengraph and twitter meta tags
π Find issues before they become a problem
- Trailing Slashes automatically handled correctly
- Discover broken links
β¨ And much more
- Runtime Config Template Tokens
- Use route rules to manage custom config
- Use
definePageMeta
for title, description and image <Breadcrumbs />
- Generate Schema.org compliant breadcrumbs with zero-config- More coming soon!
npm install --save-dev nuxt-seo-kit
# Using yarn
yarn add --dev nuxt-seo-kit
Requires Nuxt >= 3.1.0.
nuxt.config.ts
export default defineNuxtConfig({
extends: [
'nuxt-seo-kit'
]
})
For configuration to be accessibility to both the Nuxt App, modules and server, config should be provided in the runtime config.
This also allows you to easily override config for different environments.
nuxt.config.ts
export default defineNuxtConfig({
runtimeConfig: {
public: {
siteUrl: process.env.NUXT_PUBLIC_SITE_URL || 'https://example.com',
siteName: 'Awesome Site',
siteDescription: 'Welcome to my awesome site!',
language: 'en', // prefer more explicit language codes like `en-AU` over `en`
}
},
})
To make the most of Nuxt SEO Kit, you should use the SeoKit
component somewhere in your
app layout.
This component will set the default meta tags for your app. It's important to have this run before any page-specific meta tags are set.
app.vue
<template>
<div>
<SeoKit />
<NuxtPage />
</div>
</template>
You have the essentials all set up!
Next steps:
- Choose a Schema.org identity
- Read the guides below
- Scan your site with Unlighthouse to validate any SEO issues
The default title template for your site will be %s %titleSeparator %siteName
, unless you change it.
Please read the Runtime Config Template Tokens guide on using the tokens.
If you'd like to change the title separator (the default is β
), you can provide the runtime config.
export default defineNuxtConfig({
runtimeConfig: {
public: {
titleSeparator: '|'
}
},
})
Otherwise, you can modify the titleTemplate
to your liking with nuxt config or using useHead
.
export default defineNuxtConfig({
app: {
head: {
titleTemplate: '%pageTitle %titleSeparator %siteName'
}
}
})
You can provide all your routes with OG Image generation by simply adding one of the OG Image components or composables to your app.vue
.
Please check the Nuxt Og Image docs for full usage.
<template>
<div>
<SeoKit />
<!-- a. Generates browser screenshots for every page -->
<OgImageScreenshot />
<!-- b. Generate satori images for every page (uses the default template) -->
<OgImageStatic />
<NuxtPage />
</div>
</template>
Nuxt SEO Kit allows you to enable global trailing slashes using the runtime config.
This will automatically add trailing slashes to your sitemap and add it as canonical URL.
Note: You will need to still manually write your <NuxtLink>
with trailing slashes.
export default defineNuxtConfig({
runtimeConfig: {
public: {
trailingSlash: true,
}
},
})
By default, Nuxt SEO Kit won't block your builds if 404 links are discovered.
To enable this, you can provide the linkChecker.failOn404
option.
export default defineNuxtConfig({
linkChecker: {
failOn404: true,
}
})
It can be useful to change the host name based on which environment you have the nuxt App running on.
You can do this with an .env file and the following keys.
NUXT_PUBLIC_SITE_URL="https://harlanzw.com"
NUXT_INDEXABLE=true
By default, Nuxt SEO Kit will allow search engines to index your site in production environments.
If you want to disable this, you can set indexable
to false
in your config.
export default defineNuxtConfig({
runtimeConfig: {
indexable: false
},
})
Alternatively, you can set the NUXT_INDEXABLE=false
environment variable.
The Breadcrumbs
component is a Schema.org compliant breadcrumbs component.
<template>
<Breadcrumbs>
<template #breadcrumb="{ to, title }">
<NuxtLink :to="to">
{{ title }}
</NuxtLink>
</template>
</Breadcrumbs>
</template>
It will automatically infer the routes and labels from your Nuxt router.
Firstly, it will check the breadcrumbTitle
property on the route meta. If that is not present, it will use the title
property.
<script lang="ts" setup>
definePageMeta({
breadcrumbTitle: 'Breadcrumbs are cool',
})
</script>
To provide page meta, you can make use of the Nuxt 3.1 feature useSeoMeta
, which allows you provide reactive meta tags.
<script lang="ts" setup>
useSeoMeta({
title: 'Home',
description: 'Welcome to my website',
// reactive example
ogImage: () => someData.value?.image
})
</script>
Alternatively, you can use the definePageMeta
function to set page-specific meta tags. Note that this data can not be reactive.
<script lang="ts" setup>
definePageMeta({
title: 'Home',
description: 'Welcome to my website',
image: '/images/home.jpg',
})
</script>
By default, the package sets a template for the og:title
that matches the title
.
That is %s ${config.titleSeparator} ${config.siteName}
.
You can override this by setting a ogTitleTemplate
in your config.
export default defineNuxtConfig({
unhead: {
ogTitleTemplate: '%s | My Website',
}
})
The twitter:
prefixed meta tags are only needed when they differ from the og:
prefixes, except for the twitter:card
tag.
You are welcome to modify the twitter:*
meta tags using definePageMeta
or useSeoMeta
.
This module currently relies on pre-rendering to figure out all of your site routes. If your route isn't being pre-rendered then you will either need to manually add it to the sitemap.xml using hooks or pre-render it.
export default defineNuxtConfig({
// option a. Add routes to pre-render
nitro: {
prerender: {
routes: [
'/',
'/my-hidden-url'
]
}
},
// option b. use hooks
hooks: {
'sitemap:generate': (ctx) => {
// add custom URLs
ctx.urls.push({
url: '/my-hidden-url',
})
}
}
})
- https://github.com/harlan-zw/harlanzw.com
- https://github.com/unjs/unhead/tree/main/docs
- https://github.com/harlan-zw/unlighthouse/tree/main/docs
- https://github.com/harlan-zw/unhead-schema-org/tree/main/docs
MIT License Β© 2022-PRESENT Harlan Wilton