Nuxt Delay Hydration Versions Save

Delayed hydration for progressively enhanced apps. Reduced blocking time and improved Google Lighthouse scores. ⚡️

v1.1.2

1 year ago

Bug Fixes

v1.1.1

1 year ago

Bug Fixes

  • ignore ts errors using window._$delayHydration (72a4b5d)

v1.1.0

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/harlan-zw/nuxt-delay-hydration/compare/v1.0.5...v1.1.0

v1.0.5

1 year ago

Bug Fixes

v1.0.4

1 year ago

Bug Fixes

v1.0.3

1 year ago

Bug Fixes

v1.0.2

1 year ago

Bug Fixes

v1.0.1

1 year ago

Bug Fixes

  • resolve filter properly (c2e18c3)

v1.0.0

1 year ago

Support for Nuxt v3

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

:rocket: 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/**'
    ],
  },
}

:warning: Other Breaking changes

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

v0.4.7

1 year ago

Bug Fixes

  • ensure components always get registered (de22aca), closes #3