config-rocket
    Preparing search index...

    Interface FileOutputOptions

    interface FileOutputOptions {
        hookable?: Hookable<FileOutputHooks, string>;
        mergeContent?: boolean | "json";
    }
    Index

    Properties

    hookable?: Hookable<FileOutputHooks, string>

    A hookable instance to hook into the file output process.

    mergeContent?: boolean | "json"

    Control existing file content merging policy.

    Options:

    • 'json': perform deep merge for json files only.
    • true: concatenate data of all files (json are still deep-merged).