Usage

Supported CSS Providers

Empty provider

Generally you will always want to use one of the provided CSS frameworks. But in the case that you only want to use custom Blazorise extension like Chart or Sidebar you can register an “Empty” provider. This way the extensions will still work but the default Blazorise components will be unused.

public void ConfigureServices( IServiceCollection services )
{
  services
    .AddEmptyProviders();
}