---
title: "Nuxt Sitemap v5.0.0"
description: "Release notes for v5.0.0 of Nuxt Sitemap."
canonical_url: "https://nuxtseo.com/docs/sitemap/releases/v5"
last_updated: "2026-05-06T18:46:43.810Z"
---

## 🚨 Breaking Changes

### Package Renamed to `@nuxtjs/sitemap`

This module is now the official Sitemap module for Nuxt. To properly
reflect this, the package has been renamed to `@nuxtjs/sitemap` from `nuxt-simple-sitemap` and
the GitHub repository has been moved to [nuxt-modules/sitemap](https://github.com/nuxt-modules/sitemap).

1. Update the dependency

```diff
{
  "dependencies": {
-    "nuxt-simple-sitemap": "*"
+    "@nuxtjs/sitemap": "^5.0.0"
  }
}
```

1. Update your `nuxt.config`.

```diff
export default defineNuxtConfig({
  modules: [
-   'nuxt-simple-sitemap'
+  '@nuxtjs/sitemap'
  ]
})
```

## Features 🚀

##    🐞 Bug Fixes

### Improved Cache Debugging

- Set browser cache time to match `cacheMaxAgeSeconds`  -  by @harlan-zw [<samp>

(00d17)

</samp>

](https://github.com/nuxt-modules/sitemap/commit/00d176e)
- Iso timestamp for debugging cache  -  by @harlan-zw [<samp>

(db3f3)

</samp>

](https://github.com/nuxt-modules/sitemap/commit/db3f337)
- Cache headers for prerendered sitemap  -  by @harlan-zw [<samp>

(57bef)

</samp>

](https://github.com/nuxt-modules/sitemap/commit/57bef21)
- More explicit caching  -  by @harlan-zw [<samp>

(328b7)

</samp>

](https://github.com/nuxt-modules/sitemap/commit/328b737)

### More Consistent DevTools UI

The DevTools has been updated to match the branding of the other Nuxt SEO module DevTools. [<samp>

(bc4ae)

</samp>

](https://github.com/nuxt-modules/sitemap/commit/bc4aebc)

### Others

- Redirect multi sitemap `sitemap.xml` using route rules  -  by @harlan-zw [<samp>

(e1bee)

</samp>

](https://github.com/nuxt-modules/sitemap/commit/e1bee81)

#####     [View changes on GitHub](https://github.com/nuxt-modules/sitemap/compare/v4.4.1...v5.0.0)
