mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
26 lines
651 B
Markdown
26 lines
651 B
Markdown
|
---
|
||
|
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" }}
|
||
|
```
|