@playform/favicon - v0.1.0
    Preparing search index...

    Interface Interface

    interface Interface {
        Source: string;
        DarkSource: string;
        Path: string;
        Settings: Settings;
        Inject: boolean;
        InjectHtml: boolean;
        BustURL: boolean;
        Logger: (Message: string) => void;
    }
    Index

    Properties

    Source: string

    The path to the source icon file (SVG). Default: "Source/Asset/PlayForm.svg"

    DarkSource: string

    The path to the dark mode source icon file (SVG). Default: "Source/Asset/Dark/PlayForm.svg"

    Path: string

    The output path for favicon files. Default: "/"

    Settings: Settings

    Favicon generation settings. Default: {} (uses built-in defaults)

    Inject: boolean

    Whether to inject favicon HTML into the head. Default: true

    InjectHtml: boolean

    Whether to inject favicon HTML into HTML files using HTML comment replacement. When enabled, replaces comments in HTML files with favicon links. Also strips existing favicon links and adds new ones if the comment is not found. Default: false

    BustURL: boolean

    Whether to bust cache on all favicon URLs by adding timestamp query parameter. Default: false

    Logger: (Message: string) => void

    Custom logger function.