Stone.js API
    Preparing search index...

    Options for prerenderPage.

    interface PrerenderPageOptions {
        head?: HeadContext;
        node: ReactNode;
        path: string;
        snapshot?: Record<string, unknown>;
        statusCode?: number;
        template: string;
    }
    Index
    head?: HeadContext

    The page's resolved head context.

    node: ReactNode

    The fully-built React tree for the page (layout + page + providers).

    path: string

    The route path being generated (e.g. /blog/hello-world).

    snapshot?: Record<string, unknown>

    The hydration snapshot to embed (defaults to { ssr: true }).

    statusCode?: number

    The resolved status code (defaults to 200).

    template: string

    The HTML template containing <!--app-html--> and <!--app-head--> placeholders.