Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

InstallationConfig.cs

namespace Nop.Core.Configuration;

/// <summary>
/// Represents installation configuration parameters
/// </summary>
public partial class InstallationConfig : IConfig
{
    /// <summary>
    /// Gets or sets a value indicating whether a store owner can install sample data during installation
    /// </summary>
    public bool DisableSampleData { get; protected set; } = false;

    /// <summary>
    /// Gets or sets a list of plugins ignored during nopCommerce installation
    /// </summary>
    public string DisabledPlugins { get; protected set; } = "Misc.AzureBlob,Misc.CloudflareImages";

    /// <summary>
    /// Gets or sets a value indicating whether to download and setup the regional language pack during installation
    /// </summary>
    public bool InstallRegionalResources { get; protected set; } = true;
}