hydrationCanBeAborted

// +config.js
 
export default {
  // Default value: false
  hydrationCanBeAborted: true
}

The hydrationCanBeAborted setting only applies to Client Routing.

Whether your UI framework allows the hydration to be aborted.

Setting hydrationCanBeAborted to true tells Vike that the hydration can be aborted when the user clicks on a link before the hydration has finished.

React users should set hydrationCanBeAborted to true. Other frameworks, such as Vue, crash if the hydration is aborted; hydrationCanBeAborted should be set to false.