---
title: "v2 Beta to v2 RC"
description: "Migrate from the Nuxt SEO v2 beta to the v2 RC."
canonical_url: "https://nuxtseo.com/docs/nuxt-seo/migration-guide/beta-to-rc"
last_updated: "2026-05-10T08:20:57.933Z"
---

## Support

If you get stuck with the migration or have post-migration bugs, please get in touch.

- [Jump in the Discord](https://discord.com/invite/5jDAMswWwX)
- [Make a GitHub issue](https://github.com/harlan-zw/nuxt-seo/issues)
- [Provide feedback](https://github.com/harlan-zw/nuxt-seo/discussions/108)

## Package Rename

In moving to the RC release, the package name has changed from `@nuxtseo/module` to `@nuxtjs/seo`.

- 2-beta.x - Nuxt SEO Kit `@nuxtseo/module`
- 2-rc.x - Nuxt SEO `@nuxtjs/seo`

<code-group>

```sh [pnpm]
pnpm remove @nuxtseo/module && pnpm i -D @nuxtjs/seo
```

```bash [yarn]
yarn remove @nuxtseo/module && yarn add -D @nuxtjs/seo
```

```bash [npm]
npm remove @nuxtseo/module && npm install -D @nuxtjs/seo
```

</code-group>

```diff [nuxt.config.ts]
export default defineNuxtConfig({
  modules: [
-  '@nuxtseo/module'
+  '@nuxtjs/seo',
  ]
})
```

## Notable Changes

### Sitemap v5

We updated the sitemap module to v5, which included a package rename.

- 4.x - `nuxt-simple-sitemap`
- 5.x - `@nuxtjs/sitemap`

Your config requires no changes.
