mirror of https://github.com/abpframework/abp.git
7 changed files with 86 additions and 9 deletions
@ -0,0 +1,27 @@ |
|||||
|
namespace Volo.Abp.AspNetCore.Mvc.UI.Bundling |
||||
|
{ |
||||
|
public enum BundlingMode |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// No bundling or minification.
|
||||
|
/// </summary>
|
||||
|
None, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Automatically determine the mode.
|
||||
|
/// - Uses <see cref="None"/> for development time.
|
||||
|
/// - Uses <see cref="BundleAndMinify"/> for other environments.
|
||||
|
/// </summary>
|
||||
|
Auto, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Bundled but not minified.
|
||||
|
/// </summary>
|
||||
|
Bundle, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Bundled and minified.
|
||||
|
/// </summary>
|
||||
|
BundleAndMinify |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue