Definition

Assembly: Mintlify.Core.dll Namespace: Mintlify.Core.Models Inheritance: System.Object

Syntax

Mintlify.Core.Models.FaviconConfig

Summary

Represents the favicon configuration for Mintlify. Can be a single file or separate files for light and dark mode.

Constructors

.ctor

Initializes a new instance of the FaviconConfig class.

Syntax

public FaviconConfig()

.ctor

Initializes a new instance of the FaviconConfig class with a single favicon path.

Syntax

public FaviconConfig(string faviconPath)

Parameters

NameTypeDescription
faviconPathstring?The path to the favicon file.

Properties

Dark

Gets or sets the path to the dark favicon file, including the file extension.

Syntax

public string Dark { get; set; }

Property Value

Type: string?

Light

Gets or sets the path to the light favicon file, including the file extension.

Syntax

public string Light { get; set; }

Property Value

Type: string?