prorm API Reference
    Preparing search index...

    Interface MeilisearchStoreOptions

    Connection options for MeilisearchStore.

    host and apiKey are passed straight through to the driver's new MeiliSearch(...). Pass client to inject an already-built client instance (used in tests and when the caller wants full control over driver configuration); when present, host/apiKey are ignored.

    interface MeilisearchStoreOptions {
        host?: string;
        apiKey?: string;
        client?: any;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Any additional options passed through to the driver's client.

    Index
    host?: string

    URL of the Meilisearch server, e.g. http://localhost:7700.

    apiKey?: string

    API key used to authenticate against the server.

    client?: any

    An already-constructed Meilisearch client to use instead of building one.