Stone.js API
    Preparing search index...

    Loads and merges configuration sources, then writes the result into the blueprint.

    Sources are merged in order, later sources winning. loadInto is meant to run from a @Configuration()'s async configure(blueprint), which the framework awaits during initBlueprint, before any blueprint middleware, so the whole app boots with the config already in place. Mark the @Configuration({ live: true }) to reload it on every incoming event.

    Index
    • Add a source (lowest precedence first, highest last).

      Parameters

      Returns this

      This manager for chaining.

    • Load and merge every source, applying the transform to the merged result.

      Returns Promise<Record<string, unknown>>

      The merged configuration.

    • Load the merged configuration into the blueprint.

      Parameters

      • blueprint: IBlueprint

        The application blueprint.

      Returns Promise<void>