mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
647 B
Executable file
647 B
Executable file
title | linkTitle | description | categories | keywords | menu | weight | action | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Minify | Asset minification | Minifies a given resource. |
|
|
80 |
|
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
.