WebOptimizer
WebOptimizer copied to clipboard
A bundler and minifier for ASP.NET Core
If we have setup like ``` //Concatenate all to one file and minify this file pipeline.AddBundle(path, contentType, files) .EnforceFileExtensions(".js") .Concatenate() .MinifyJavaScript() ``` and if some files are already minified, we...
The bundle is not updated after include files are modified. Running .net core 6.0 on Win-x64 Using "publish to folder". I've tried re-building the app, re-publishing, restarting app pool, restarting...
I added it but, it still shows up in my log.  i want to remove it 
When we have `` these symbols which we use for C# like string $"user Id:{id}" and if we have new line in those statements then the JS minify is not...
Using [LigerShark.WebOptimizer v3.0.405](https://github.com/ligershark/WebOptimizer) with EPiServer.CMS 12.28.0 and the following config: "webOptimizer": { "enableTagHelperBundling": true } In a browser we get the error: Uncaught Error: Cannot find module  What can...
In my Dockerfile I doing a final build after 1. restoring dependencies 2. building the project (without restore) 3. publishing the project (without build) Sadly this does not work (for...
As per nuget version 3.0.405 I should be able to access WebOptimizer.Processors, as to set GenerateSourceMap to true. However, I'm unable to do so for some reason. I'm unsure if...
Enables the creation of Source Maps for Javascript Bundles. Program.cs example: services.AddWebOptimizer(pipeline => { . . . pipeline.AddJavaScriptBundle("/js/bundle.js", new WebOptimizer.Processors.JsSettings { GenerateSourceMap = true }, "/ui/crud/jquery-3.7.1.js", "/ui/all/bootstrap/bootstrap.bundle.js"); }); Generates a...
Considering that having critical css is very important in SEO , Does the WebOptimizer have this possibility?
I'm working on an Extension and notice there's not a lot of documentation. If I documented more of the methods and added some more info about how to write extensions,...