You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/framework/src/Volo.Abp.AspNetCore.Compone.../BundleContributer.cs

18 lines
549 B

using System.Collections.Generic;
using Volo.Abp.Bundling;
namespace Volo.Abp.AspNetCore.Components.WebAssembly.Theming
{
public class BundleContributer : BaseBundleContributer
{
public override string[] GetStyles()
{
return new string[]
{
"_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/bootstrap/css/bootstrap.min.css",
"_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/css/all.css",
};
}
}
}