summaryrefslogtreecommitdiffstats
path: root/docs/content/en/hugo-pipes/minification.md
blob: c8136c040f8e88a55eb4f236fe0772d8de32ab2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
title: Asset minification
description: Hugo Pipes allows the minification of any CSS, JS, JSON, HTML, SVG or XML resource.
date: 2018-07-14
publishdate: 2018-07-14
lastmod: 2018-07-14
categories: [asset management]
keywords: []
menu:
  docs:
    parent: "pipes"
    weight: 50
weight: 50
sections_weight: 50
draft: false
---


Any resource of the aforementioned types can be minifed 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`.