mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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.
18 lines
660 B
18 lines
660 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",
|
|
"_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/flag-icon/css/flag-icon.css"
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|