mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
a3535c8486
a4fa0d1d6 Typos and grammatical changes 513884600 Add hugo pipes documentation git-subtree-dir: docs git-subtree-split: a4fa0d1d641b2b3e27a91ae8b1a0a29be3c42ddf
26 lines
No EOL
651 B
Markdown
Executable file
26 lines
No EOL
651 B
Markdown
Executable file
---
|
|
title: Asset bundling
|
|
description: Hugo Pipes can bundle any number of assets together.
|
|
date: 2018-07-14
|
|
publishdate: 2018-07-14
|
|
lastmod: 2018-07-14
|
|
categories: [asset management]
|
|
keywords: []
|
|
menu:
|
|
docs:
|
|
parent: "pipes"
|
|
weight: 60
|
|
weight: 60
|
|
sections_weight: 60
|
|
draft: false
|
|
---
|
|
|
|
|
|
Asset files of the same MIME type can be bundled into one resource using `resources.Concat` which takes two arguments, a target path and a slice of resource objects.
|
|
|
|
|
|
```go-html-template
|
|
{{ $plugins := resources.Get "js/plugins.js" }}
|
|
{{ $global := resources.Get "js/global.js" }}
|
|
{{ $js := slice $plugins $global | resources.Concat "js/bundle.js" }}
|
|
``` |