hugo/content/en/hugo-pipes/bundling.md
Bjørn Erik Pedersen b9bd35d72e Squashed 'docs/' content from commit fdea5430f
git-subtree-dir: docs
git-subtree-split: fdea5430f89dfd849d39212abdf5ace0a4763e5a
2019-10-21 10:22:28 +02:00

651 B
Executable file

title description date publishdate lastmod categories keywords menu weight sections_weight draft
Asset bundling Hugo Pipes can bundle any number of assets together. 2018-07-14 2018-07-14 2018-07-14
asset management
docs
parent weight
pipes 60
60 60 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.

{{ $plugins := resources.Get "js/plugins.js" }}
{{ $global := resources.Get "js/global.js" }}
{{ $js := slice $plugins $global | resources.Concat "js/bundle.js" }}