mirror of
https://github.com/gohugoio/hugo.git
synced 2024-05-11 05:54:58 +00:00
599 B
Executable File
599 B
Executable File
title, linkTitle, description, categories, keywords, menu, weight, signature
| title | linkTitle | description | categories | keywords | menu | weight | signature | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Minify | Asset minification | Minifies a given resource. |
|
|
50 |
|
Usage
Any CSS, JS, JSON, HTML, SVG or XML resource can be minified using resources.Minify which takes for argument the resource object.
{{ $css := resources.Get "css/main.css" }}
{{ $style := $css | resources.Minify }}
Note that you can also minify the final HTML output to /public by running hugo --minify.