@fictjs/ssr 0.21.0 → 0.22.0

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.
package/README.md CHANGED
@@ -335,9 +335,10 @@ await allReady
335
335
 
336
336
  Generate a complete shell HTML plus a deferred patch stream for Partial Prerendering workflows.
337
337
  This is an advanced API and currently considered **Experimental Preview** in v1.0; do not treat the return shape as frozen.
338
+ Import it from the explicit Preview entrypoint, not the supported package main export.
338
339
 
339
340
  ```typescript
340
- import { renderToPartial } from '@fictjs/ssr'
341
+ import { renderToPartial } from '@fictjs/ssr/experimental'
341
342
 
342
343
  const { shell, stream, shellReady, allReady } = renderToPartial(() => <App />, {
343
344
  mode: 'shell',