A Plug that minifies HTML response body
If available in Hex, the package can be installed
by adding plug_minify_html
to your list of dependencies in mix.exs
:
def deps do
[
{:plug_minify_html, "~> 0.1.0"}
]
end
# Simple
plug PlugMinifyHtml
# Browser Pipeline
pipeline :browser do
plug :accepts, ["html"]
plug :fetch_session
plug :fetch_flash
plug :protect_from_forgery
plug :put_secure_browser_headers
plug PlugMinifyHtml
end