Skip to content

v1.0.0

Choose a tag to compare

@github-actions github-actions released this 25 Nov 02:41
· 84 commits to main since this release

Support for Nuxt v3

⚠️ drops Nuxt v2 support. If you're using Nuxt v2, stay on the 0.x branch (currently 0.4.7)

🚀 Include / exclude route support

Using the include and exclude options, you can specify which routes you'd like to delay hydration on.

// nuxt.config.ts
export default {
  delayHydration: {
    include: [
      '/blog/**',
    ],
    exclude: [
      '/admin/**'
    ],
  },
}

⚠️ Other Breaking changes

  • forever is removed, use Nuxt server components
  • replayClickMaxEventAge config is removed
  • default mode is now mount