|
12345678910111213141516 |
- using Volo.Abp.Bundling;
-
- namespace Himp.TaskScheduling.Blazor.Host.Client;
-
- public class TaskSchedulingBlazorHostBundleContributor : IBundleContributor
- {
- public void AddScripts(BundleContext context)
- {
-
- }
-
- public void AddStyles(BundleContext context)
- {
- context.Add("main.css", true);
- }
- }
|