Browse Source
Merge pull request #22304 from abpframework/auto-merge/rel-9-1/3519
Merge branch dev with rel-9.1
pull/22316/head
maliming
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
7 additions and
10 deletions
-
framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/ComponentsComponentsBundleContributor.cs
|
|
|
@ -17,17 +17,14 @@ public class ComponentsComponentsBundleContributor : IBundleContributor |
|
|
|
|
|
|
|
public void AddStyles(BundleContext context) |
|
|
|
{ |
|
|
|
if (!context.InteractiveAuto) |
|
|
|
context.BundleDefinitions.Insert(0, new BundleDefinition |
|
|
|
{ |
|
|
|
context.BundleDefinitions.Insert(0, new BundleDefinition |
|
|
|
{ |
|
|
|
Source = "_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/bootstrap/css/bootstrap.min.css" |
|
|
|
}); |
|
|
|
context.BundleDefinitions.Insert(1, new BundleDefinition |
|
|
|
{ |
|
|
|
Source = "_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/css/all.css" |
|
|
|
}); |
|
|
|
} |
|
|
|
Source = "_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/bootstrap/css/bootstrap.min.css" |
|
|
|
}); |
|
|
|
context.BundleDefinitions.Insert(1, new BundleDefinition |
|
|
|
{ |
|
|
|
Source = "_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/css/all.css" |
|
|
|
}); |
|
|
|
|
|
|
|
context.Add("_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css"); |
|
|
|
context.Add("_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/flag-icon/css/flag-icon.css"); |
|
|
|
|