Nginx-Lua-minification-library icon indicating copy to clipboard operation
Nginx-Lua-minification-library copied to clipboard

A compression and minification library to minify static or dynamic assets like HTML PHP outputs CSS style sheets JS Javascript all text/html or plain text mime types that nginx can output that the bro...

Results 2 Nginx-Lua-minification-library issues
Sort by recently updated
recently updated
newest added
trafficstars

```lua local content_type_list = { { "text/html", { --[[ Usage : Regex, Replacement Text, Replacement ]] -- - OK {"", "",}, {"%s%s+", " ",}, {"\n\n*", " ",}, {"\n*$", ""} }...

Hi, I noticied a bad performance from lua parsing a very large javascript file (more than 1Mb). So I wanted to ask if it would be possible to use a...