@tempots/ssr

RenderSSROptions type

Options for server-side rendering.

Signature:

export type RenderSSROptions = {
    html: string;
    url: string;
    selector: string;
    makeApp: () => Renderable;
    makeFetch?: (originalFetch: FetchFunction) => FetchFunction;
    waitFetch?: boolean;
};

References: FetchFunction