WebOptimizer
WebOptimizer copied to clipboard
A bundler and minifier for ASP.NET Core
Minifying bundles does not work. I am using ligershark.weboptimizer.core 3.0.330 with ASP.NET Core 6.0. App pipeline looks like below ```c# var app = builder.Build(); // HTTP request pipeline configuration if...
this is a long issue from the earlier version and it should have a higher priority. Our production has seen this a couple of times Error Message Operations that change...
Asset.GenerateCacheKey is modifying a standard (non-thread safe) Dictionary and doesn't appear to be protected by a thread mutex/lock. If multiple requests/threads attempt to access the same resource immediately after startup,...
We have used the library with with WebOptimizer.Sass in a Blazor webassembly project in .net 5 and it used to work fine but recently upgrading to .net 6 wasnt working...
Is there a way for WebOptimizer to allow for serving of source maps, (*.js.map)? Currently source source maps are resulting in a 404 for me. I see that that CodeBundlingSettings...
result: /* input(1,1-8): run-time error JS1030: Conditional compilation is turned off: @import input(1,8): run-time error JS1004: Expected ';' input(2,1-8): run-time error JS1030: Conditional compilation is turned off: @import ... ------------------------------------...
I have the following bundle ```cs services.AddWebOptimizer(pipeline => { pipeline.AddJavaScriptBundle("/js/vendor.js", new[] { "/lib/js/vue.js", "/lib/js/filepond-plugin-file-validate-type.js", "/lib/js/filepond.js", "/lib/js/bootstrap.bundle.js", "/lib/js/jquery.js", "/lib/js/tom-select.complete.js", "/lib/js/vuejs-dialog.min.js", "/lib/js/vue-filepond.js", "/lib/js/iziToast.js" }); }); ``` Sadly it does not bundle my...
Plattform: .NET 6, Windows I've added WebOptimizer according to the guidelines, something like this: ```csharp public void ConfigureServices(IServiceCollection services) { services.AddWebOptimizer( pipeline => { pipeline.AddCssBundle("/test.css", "style_css/layout.css", "style_css/page.css"); }); } public...
With the commit „FIX ASP.NET Core 6 default file provider” the retrieval of the file provider was changed, which lead to bugs when not all files are located in the...
Hello, I can't understand the exception bellow when WebOptimizer's tag helper try to access any bundle after a deployment on an Azure App Service. Locally everything works as expected. Exception...