Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 339 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 339 Bytes

HtmlMinifier

Html minifier middleware for aspnet 5.

This middleware intercepts the Response.Body Stream and compress it using Zeta Html Compressor if it's html.

Usage:

public void Configure(IApplicationBuilder app)
{
    app.UseHtmlMinifier();
    ...
}