mirror of
https://github.com/gohugoio/hugo.git
synced 2024-12-02 03:09:33 -05:00
24 lines
599 B
Markdown
Executable file
24 lines
599 B
Markdown
Executable file
---
|
|
title: Minify
|
|
linkTitle: Asset minification
|
|
description: Minifies a given resource.
|
|
categories: [asset management]
|
|
keywords: []
|
|
menu:
|
|
docs:
|
|
parent: pipes
|
|
weight: 50
|
|
weight: 50
|
|
signature: ["resources.Minify RESOURCE", "minify RESOURCE"]
|
|
---
|
|
|
|
## Usage
|
|
|
|
Any CSS, JS, JSON, HTML, SVG or XML resource can be minified using `resources.Minify` which takes for argument the resource object.
|
|
|
|
```go-html-template
|
|
{{ $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`.
|