Skip to content

v5.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 06 Jan 04:55
· 57 commits to main since this release

   🚨 Breaking Changes

✨ Official Nuxt Sitemap Module

This module is now the official Sitemap module for Nuxt 3.

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.

  1. Update the dependency
{
  "dependencies": {
-    "nuxt-simple-sitemap": "*"
+    "@nuxtjs/sitemap": "^5.0.0"
  }
}
  1. Update your nuxt.config.
export default defineNuxtConfig({
  modules: [
-   'nuxt-simple-sitemap'
+  '@nuxtjs/sitemap'
  ]
})

   🐞 Bug Fixes

Improved Cache Debugging

More Consistent DevTools UI

The DevTools has been updated to match the branding of the other Nuxt SEO module DevTools. (bc4ae)

Others

    View changes on GitHub