WebOptimizer icon indicating copy to clipboard operation
WebOptimizer copied to clipboard

A bundler and minifier for ASP.NET Core

Results 148 WebOptimizer issues
Sort by recently updated
recently updated
newest added

Hi, I use the weboptimizer pipeline to bundle sass to css. However I have noticed that the version flag added by the taghelper does not change when I change the...

![image](https://user-images.githubusercontent.com/12182810/98449662-f01baf80-213d-11eb-9893-24dd80aac0df.png) When i try call `pipeline.AddJavaScriptBundle("/js/scripts.js", "js/**/*.js")` by analogy as in the line above (`pipeline.AddCssBundle("/css/bundle.css", "css/**/*.css")`), I get this error. ![image](https://user-images.githubusercontent.com/12182810/98449566-3d4b5180-213d-11eb-9a2f-c6cc69e48ef7.png) Js files are created in this path "C:\Users\Admin\source\repos\SecretCircle.Bmv\SecretCircle.BmwTheme\wwwroot\js"

The cache busting feature is a great (and essential) feature. Unfortunately, our corporate firewall does not like some of the generated strings..., sometimes we got unlucky enough and the firewall...

Starting around 11:20pm EST on Feb 10, a web site of ours started throwing NullReferenceExceptions, apparently from AssetPipeline.TryGetAssetFromRoute(), on (it seems) every request. There were no new deployments or changes...

When running in localhost for debugging, the url's of NuGet packages with staticwebassets still are being given the wrong relative url. The following small change in the ExecuteAsync method in...

I'll work on getting an example repo but I wanted to go ahead and drop an issue while it's fresh on my mind. I went to update an older app...

The dotless plugin does not appear to currently work at all for .less files. There is a bug in the WebOptimizer.Core library which is causing it to not be able...

An already minified javascript included in a bundle is not added to the content dictionary returned, and is removed from the resultant bundle public override Task ExecuteAsync(IAssetContext config) { var...

The FileVersionProvider used by the Asset.GenerateCacheKey uses synchronous access to the fileinfo stream ( passes stream directly to the SHA algorithm ), where as the AssetBuilder uses CopyToAsync. Can you...

When I tried to disabled the cache to disk, by adding this to my appsettings.json `"webOptimizer": { "enableDiskCache": false }` the class AssetResponse still try to save it on the...