Docs for Release: 2.0.1
    Preparing search index...

    Interface ConfigData

    interface ConfigData {
        displayMethod?: "browser" | "none";
        host?: string;
        htmlFooter?: string;
        htmlHeader?: string;
        port: number;
        stayOpen?: boolean;
        style?: string;
        title?: string;
    }
    Index

    Properties

    displayMethod?: "browser" | "none"

    How to display the panel.

    • webview (default) uses an embedded webview window,
    • browser opens the default system browser,
    • none does not open any window. The server URL must be opened manually.
    host?: string

    Host to run local server on. Defaults to 'localhost'.

    htmlFooter?: string

    Extra custom HTML to inject into the panel after the categories (e.g. for custom footer).

    htmlHeader?: string

    Extra custom HTML to inject into the panel before the categories (e.g. for custom header).

    port: number

    Port to run local server on. Defaults to 0 (random available port).

    stayOpen?: boolean

    Whether to keep the listening server open after the window/browser is closed. Defaults to false.

    style?: string

    Custom CSS to inject into the panel.

    title?: string

    Optional title for the panel.