Documentation
    Preparing search index...

    Interface PajaHostConfig

    Serialized host-page config served to the browser runtime.

    interface PajaHostConfig {
        chrome: { bottomBar: true; sidePanels: false; topBar: true };
        runtime: {
            configPath?: string;
            createdAt: string;
            host: string;
            port: number;
            readyTimeoutMs: number;
            reloadToken: string;
        };
        simulation: PajaSimulation;
        target: {
            command?: PajaCommand;
            hmrStrategy: PajaHmrStrategy;
            mode: PajaTargetMode;
            pointer?: PajaPointerRuntimeConfig;
            url: string;
        };
        version: 1;
        window: { aggregateHash: string; dTag: string; id: string };
    }
    Index

    Properties

    chrome: { bottomBar: true; sidePanels: false; topBar: true }
    runtime: {
        configPath?: string;
        createdAt: string;
        host: string;
        port: number;
        readyTimeoutMs: number;
        reloadToken: string;
    }
    simulation: PajaSimulation
    target: {
        command?: PajaCommand;
        hmrStrategy: PajaHmrStrategy;
        mode: PajaTargetMode;
        pointer?: PajaPointerRuntimeConfig;
        url: string;
    }
    version: 1

    Config schema version.

    window: { aggregateHash: string; dTag: string; id: string }

    Window identity used for the development target.