effex-monorepo
    Preparing search index...

    Interface ToHttpRoutesOptions

    interface ToHttpRoutesOptions {
        app?: () => Element.Element<
            HTMLElement
            | SVGElement,
            never,

                | Scope
                | RendererContext
                | SuspenseBoundaryCtx
                | ControlCtx
                | NavigationContext
                | RouteDataContext,
        >;
        document?: DocumentOptions;
    }
    Index

    Properties

    Properties

    app?: () => Element.Element<
        HTMLElement
        | SVGElement,
        never,

            | Scope
            | RendererContext
            | SuspenseBoundaryCtx
            | ControlCtx
            | NavigationContext
            | RouteDataContext,
    >

    Root app component to render on the server. This should be the same component tree the client hydrates. It should contain an Outlet that renders matched routes.

    If not provided, renders just the matched route with layouts.

    document?: DocumentOptions

    Document generation options