@tanstack/router-core 1.130.1 → 1.130.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1459,7 +1459,10 @@ class RouterCore {
1459
1459
  }
1460
1460
  }
1461
1461
  isShell() {
1462
- return this.options.isShell;
1462
+ return !!this.options.isShell;
1463
+ }
1464
+ isPrerendering() {
1465
+ return !!this.options.isPrerendering;
1463
1466
  }
1464
1467
  get state() {
1465
1468
  return this.__store.state;