From 5bdab0ebdc83def793d15960771bd98de249ab4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sun, 23 Feb 2020 11:35:02 +0100 Subject: [PATCH] Update minification.md --- content/en/hugo-pipes/minification.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/en/hugo-pipes/minification.md b/content/en/hugo-pipes/minification.md index ce090752f..c8136c040 100755 --- a/content/en/hugo-pipes/minification.md +++ b/content/en/hugo-pipes/minification.md @@ -22,4 +22,6 @@ Any resource of the aforementioned types can be minifed using `resources.Minify` ```go-html-template {{ $css := resources.Get "css/main.css" }} {{ $style := $css | resources.Minify }} -``` \ No newline at end of file +``` + +Note that you can also minify the final HTML output to `/public` by running `hugo --minify`.