Stone.js API
    Preparing search index...

    The output of pre-rendering a single PrerenderTarget.

    interface PrerenderResult {
        head?: string;
        html: string;
        path: string;
        statusCode: number;
    }
    Index
    head?: string

    The serialized head (already included in html; exposed for tooling).

    html: string

    The full HTML document to write (e.g. to dist/<path>/index.html).

    path: string

    The target path.

    statusCode: number

    The status code the page resolved to (200, 404, …).